Browse Source

Fix include in normal JSON thing

Sam Jaffe 7 years ago
parent
commit
904a7518bf
2 changed files with 3 additions and 4 deletions
  1. 1 1
      src/json.cpp
  2. 2 3
      src/json_parser.cpp

+ 1 - 1
src/json.cpp

@@ -6,7 +6,7 @@
 //  Copyright © 2016 Sam Jaffe. All rights reserved.
 //
 
-#include "json.hpp"
+#include "json/json.hpp"
 
 const json::value json::value::null_value{};
 

+ 2 - 3
src/json_parser.cpp

@@ -7,9 +7,8 @@
 
 #include <iostream>
 
-#include "json.hpp"
-
-#include "json_common.hpp"
+#include "json/json.hpp"
+#include "json/json_common.hpp"
 
 namespace json { namespace {
   void parse_object(value& json, char const*& data);