From e29b19d2a852b10856ea0387d90837d67c288afb Mon Sep 17 00:00:00 2001 From: Alexander Nevskiy Date: Sun, 21 Jun 2015 13:35:25 +0300 Subject: [PATCH] Remove ifdef for MSVC compiler --- src/json.hpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/json.hpp b/src/json.hpp index 87a223152..7fbec1295 100755 --- a/src/json.hpp +++ b/src/json.hpp @@ -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; /// the type of elements in a basic_json container using value_type = basic_json;