Explorar o código

Fix include in normal JSON thing

Sam Jaffe %!s(int64=7) %!d(string=hai) anos
pai
achega
904a7518bf
Modificáronse 2 ficheiros con 3 adicións e 4 borrados
  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);