Skip to content

Commit 392579d

Browse files
authored
Fix v2503 bugs (#763)
* Remove googletest from gitmodules. Recommended way of using gtest is through FetchContent * Add <sstream> to DOTGraph.cpp, which is missing on FreeBSD
1 parent b71fbaa commit 392579d

2 files changed

Lines changed: 1 addition & 5 deletions

File tree

.gitmodules

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22
path = external/json
33
url = https://github.com/nlohmann/json.git
44
ignore = dirty
5-
[submodule "lib/googletest"]
6-
path = external/googletest
7-
url = https://github.com/google/googletest.git
8-
branch = master
95
[submodule "external/json-schema-validator"]
106
path = external/json-schema-validator
117
url = https://github.com/pboettch/json-schema-validator.git

lib/Utils/DOTGraph.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818

1919
#include "nlohmann/json.hpp"
2020

21-
#include <algorithm>
2221
#include <filesystem>
2322
#include <fstream>
2423
#include <iterator>
2524
#include <ostream>
25+
#include <sstream>
2626
#include <utility>
2727

2828
namespace psr {

0 commit comments

Comments
 (0)