Skip to content

Commit bd01d63

Browse files
committed
fix: update json include paths to use local header
1 parent e9d8bb1 commit bd01d63

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

common/chat-template.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#pragma once
1010

1111
#include "minja.hpp"
12-
#include <json.hpp>
12+
#include "json.hpp"
1313
#include <string>
1414
#include <vector>
1515

common/chat.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#pragma once
44

55
#include "common.h"
6-
#include <json.hpp>
6+
#include "json.hpp"
77
#include <optional>
88
#include <string>
99
#include <vector>

common/minja.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#include <stdexcept>
1717
#include <sstream>
1818
#include <unordered_set>
19-
#include <json.hpp>
19+
#include "json.hpp"
2020

2121
using json = nlohmann::ordered_json;
2222

0 commit comments

Comments
 (0)