Remove ifdef for MSVC compiler

This commit is contained in:
Alexander Nevskiy 2015-06-21 13:35:25 +03:00
parent dfcb753806
commit e29b19d2a8

View File

@ -99,11 +99,7 @@ class basic_json
// container types //
/////////////////////
#ifdef _MSC_VER
using __basic_json = basic_json<>;
#else
using __basic_json = basic_json;
#endif
using __basic_json = basic_json<ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberFloatType, AllocatorType>;
/// the type of elements in a basic_json container
using value_type = basic_json;