From 73b1629a15a66a3e15d456f400ea9ceca4d2e317 Mon Sep 17 00:00:00 2001
From: Jamie Seward <jamie.d.seward@gmail.com>
Date: Mon, 23 Oct 2017 23:45:39 -0700
Subject: [PATCH] Remove tabs for spaces

---
 src/json.hpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/json.hpp b/src/json.hpp
index 16b0b1fd..af087098 100644
--- a/src/json.hpp
+++ b/src/json.hpp
@@ -111,10 +111,10 @@ SOFTWARE.
 
 // cpp language standard detection
 #if (defined(__cplusplus) && __cplusplus >= 201703L) || (defined(_HAS_CXX17) && _HAS_CXX17 == 1) // fix for issue #464
-	#define JSON_HAS_CPP_17
-	#define JSON_HAS_CPP_14
+    #define JSON_HAS_CPP_17
+    #define JSON_HAS_CPP_14
 #elif (defined(__cplusplus) && __cplusplus >= 201402L) || (defined(_HAS_CXX14) && _HAS_CXX14 == 1)
-	#define JSON_HAS_CPP_14
+    #define JSON_HAS_CPP_14
 #endif
 
 /*!