Skip to content

Commit

Permalink
Fixed bug with newer visual studio compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
erikgoe committed Oct 23, 2017
1 parent 0e972d3 commit 857f705
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Compiler/Nigel/HelperDefinitions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ namespace helper



#if (_MSC_VER == 1900 || _MSC_VER == 1910) //bug-workaround (VC_2015)
#if (_MSC_VER >= 1900 && _MSC_VER <= 1911) //bug-workaround (VC_2015+)

String8 to_utf8( const String16 &str )
{
Expand Down

0 comments on commit 857f705

Please # to comment.