ENH: Remove conditionals for unsupported VS compilers

Visual Studio 12 (2013) with _MSC_VER=1800 is the oldest supported
compiler with sufficient C++11 capabilities

See:
https://blogs.msdn.microsoft.com/vcblog/2013/12/02/c1114-core-language-features-in-vs-2013-and-the-nov-2013-ctp/
for details related to language features supported.
diff --git a/doc/doxyfile.in b/doc/doxyfile.in
index baf04c1..dcf514e 100644
--- a/doc/doxyfile.in
+++ b/doc/doxyfile.in
@@ -1944,7 +1944,7 @@
 # recursively expanded use the := operator instead of the = operator.
 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
 
-PREDEFINED             = "_MSC_VER=1400" \
+PREDEFINED             = "_MSC_VER=1800" \
                          _CPPRTTI \
                          _WIN32 \
                          JSONCPP_DOC_EXCLUDE_IMPLEMENTATION
diff --git a/doc/web_doxyfile.in b/doc/web_doxyfile.in
index 938ecd1..df09dcc 100644
--- a/doc/web_doxyfile.in
+++ b/doc/web_doxyfile.in
@@ -1932,7 +1932,7 @@
 # recursively expanded use the := operator instead of the = operator.
 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
 
-PREDEFINED             = "_MSC_VER=1400" \
+PREDEFINED             = "_MSC_VER=1800" \
                          _CPPRTTI \
                          _WIN32 \
                          JSONCPP_DOC_EXCLUDE_IMPLEMENTATION
diff --git a/include/json/config.h b/include/json/config.h
index 5049c73..8438428 100644
--- a/include/json/config.h
+++ b/include/json/config.h
@@ -54,6 +54,10 @@
 #define JSON_API
 #endif
 
+#if defined(_MSC_VER) && _MSC_VER < 1800
+  #error "ERROR:  Visual Studio 12 (2013) with _MSC_VER=1800 is the oldest supported compiler with sufficient C++11 capabilities"
+#endif
+
 #if defined(_MSC_VER) && _MSC_VER < 1900
 // As recommended at https://stackoverflow.com/questions/2915672/snprintf-and-visual-studio-2010
    extern JSON_API int msvc_pre1900_c99_snprintf(char *outBuf, size_t size, const char *format, ...);
@@ -68,22 +72,7 @@
 // #define JSON_NO_INT64 1
 
 #if defined(_MSC_VER) // MSVC
-#if _MSC_VER <= 1200  // MSVC 6
-// Microsoft Visual Studio 6 only support conversion from __int64 to double
-// (no conversion from unsigned __int64).
-#define JSON_USE_INT64_DOUBLE_CONVERSION 1
-// Disable warning 4786 for VS6 caused by STL (identifier was truncated to '255'
-// characters in the debug information)
-// All projects I've ever seen with VS6 were using this globally (not bothering
-// with pragma push/pop).
-#pragma warning(disable : 4786)
-#endif // MSVC 6
-
-#if _MSC_VER >= 1500 // MSVC 2008
-                     /// Indicates that the following function is deprecated.
 #define JSONCPP_DEPRECATED(message) __declspec(deprecated(message))
-#endif
-
 #endif // defined(_MSC_VER)
 
 // In c++11 the override keyword allows you to explicitly define that a function
@@ -93,13 +82,9 @@
 #if __cplusplus >= 201103L
 #define JSONCPP_NOEXCEPT noexcept
 #define JSONCPP_OP_EXPLICIT explicit
-#elif defined(_MSC_VER) && _MSC_VER > 1600 && _MSC_VER < 1900
+#elif defined(_MSC_VER) && _MSC_VER < 1900
 #define JSONCPP_NOEXCEPT throw()
-#if _MSC_VER >= 1800 // MSVC 2013
 #define JSONCPP_OP_EXPLICIT explicit
-#else
-#define JSONCPP_OP_EXPLICIT
-#endif
 #elif defined(_MSC_VER) && _MSC_VER >= 1900
 #define JSONCPP_NOEXCEPT noexcept
 #define JSONCPP_OP_EXPLICIT explicit
@@ -110,9 +95,9 @@
 
 #ifndef JSON_HAS_RVALUE_REFERENCES
 
-#if defined(_MSC_VER) && _MSC_VER >= 1600 // MSVC >= 2010
+#if defined(_MSC_VER)
 #define JSON_HAS_RVALUE_REFERENCES 1
-#endif // MSVC >= 2010
+#endif // MSVC >= 2013
 
 #ifdef __clang__
 #if __has_feature(cxx_rvalue_references)
diff --git a/src/lib_json/json_reader.cpp b/src/lib_json/json_reader.cpp
index d024c22..fe79634 100644
--- a/src/lib_json/json_reader.cpp
+++ b/src/lib_json/json_reader.cpp
@@ -34,7 +34,7 @@
 #endif  //_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES
 #endif  //_MSC_VER
 
-#if defined(_MSC_VER) && _MSC_VER >= 1400 // VC++ 8.0
+#if defined(_MSC_VER)
 // Disable warning about strdup being deprecated.
 #pragma warning(disable : 4996)
 #endif
diff --git a/src/lib_json/json_value.cpp b/src/lib_json/json_value.cpp
index 81640ea..1aec87f 100644
--- a/src/lib_json/json_value.cpp
+++ b/src/lib_json/json_value.cpp
@@ -43,7 +43,7 @@
 #endif
 
 // Disable warning C4702 : unreachable code
-#if defined(_MSC_VER) && _MSC_VER >= 1800 // VC++ 12.0 and above
+#if defined(_MSC_VER)
 #pragma warning(disable : 4702)
 #endif
 
diff --git a/src/lib_json/json_writer.cpp b/src/lib_json/json_writer.cpp
index 748b7e8..4f77121 100644
--- a/src/lib_json/json_writer.cpp
+++ b/src/lib_json/json_writer.cpp
@@ -76,7 +76,7 @@
 #endif
 #endif
 
-#if defined(_MSC_VER) && _MSC_VER >= 1400 // VC++ 8.0
+#if defined(_MSC_VER)
 // Disable warning about strdup being deprecated.
 #pragma warning(disable : 4996)
 #endif