Skip to content

Commit 94f0419

Browse files
committed
json.hpp -> nlohmann/json.hpp
1 parent 926bb34 commit 94f0419

18 files changed

Lines changed: 28 additions & 26 deletions

File tree

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ add_definitions(-DBOOST_LOG_DYN_LINK)
106106
# JSON library
107107
option(JSON_BuildTests OFF)
108108
add_subdirectory(external/json EXCLUDE_FROM_ALL)
109-
include_directories(external/json/single_include/nlohmann)
109+
include_directories(external/json/single_include/)
110110

111111
# Googletest
112112
if (NOT PHASAR_IN_TREE)
@@ -243,7 +243,7 @@ install(DIRECTORY include/
243243
)
244244

245245
# Install the header only json container
246-
install(DIRECTORY external/json/single_include/nlohmann/
246+
install(DIRECTORY external/json/single_include/
247247
DESTINATION include
248248
FILES_MATCHING PATTERN "*.hpp"
249249
)

include/phasar/PhasarLLVM/ControlFlow/CFG.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#include <utility> // std::pair
2222
#include <vector>
2323

24-
#include <json.hpp>
24+
#include <nlohmann/json.hpp>
2525

2626
namespace psr {
2727

include/phasar/PhasarLLVM/ControlFlow/ICFG.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#include <set>
2323
#include <string>
2424

25-
#include <json.hpp>
25+
#include <nlohmann/json.hpp>
2626

2727
#include <phasar/PhasarLLVM/ControlFlow/CFG.h>
2828

include/phasar/PhasarLLVM/DataFlowSolver/IfdsIde/Solver/IDESolver.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#include <unordered_set>
2929
#include <utility>
3030

31-
#include <json.hpp>
31+
#include <nlohmann/json.hpp>
3232

3333
#include <boost/algorithm/string/trim.hpp>
3434

include/phasar/PhasarLLVM/Plugins/AnalysisPluginController.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#include <string>
1515
#include <vector>
1616

17-
#include <json.hpp>
17+
#include <nlohmann/json.hpp>
1818

1919
namespace psr {
2020

include/phasar/PhasarLLVM/Pointer/LLVMPointsToGraph.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
#include <llvm/IR/CallSite.h>
2828

29-
#include <json.hpp>
29+
#include <nlohmann/json.hpp>
3030

3131
#include <phasar/Config/Configuration.h>
3232

include/phasar/PhasarLLVM/Pointer/LLVMPointsToInfo.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#include <llvm/IR/PassManager.h>
1919
#include <llvm/Passes/PassBuilder.h>
2020

21-
#include <json.hpp>
21+
#include <nlohmann/json.hpp>
2222

2323
#include <phasar/PhasarLLVM/Pointer/PointsToInfo.h>
2424

include/phasar/PhasarLLVM/Pointer/PointsToInfo.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#include <iosfwd>
1414
#include <set>
1515

16-
#include <json.hpp>
16+
#include <nlohmann/json.hpp>
1717

1818
namespace psr {
1919

include/phasar/PhasarLLVM/TypeHierarchy/LLVMTypeHierarchy.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
#include <gtest/gtest_prod.h>
3434

35-
#include <json.hpp>
35+
#include <nlohmann/json.hpp>
3636

3737
#include <phasar/PhasarLLVM/TypeHierarchy/LLVMVFTable.h>
3838
#include <phasar/PhasarLLVM/TypeHierarchy/TypeHierarchy.h>

include/phasar/PhasarLLVM/TypeHierarchy/LLVMVFTable.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#include <iosfwd>
1414
#include <vector>
1515

16-
#include <json.hpp>
16+
#include <nlohmann/json.hpp>
1717

1818
#include <phasar/PhasarLLVM/TypeHierarchy/VFTable.h>
1919

0 commit comments

Comments
 (0)