Skip to content

Commit

Permalink
Reinsert missing includes
Browse files Browse the repository at this point in the history
  • Loading branch information
RickiNano committed Nov 5, 2023
1 parent 3ff971d commit cefcbce
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 0 deletions.
2 changes: 2 additions & 0 deletions nano/core_test/backlog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

#include <gtest/gtest.h>

#include <numeric>

using namespace std::chrono_literals;

/*
Expand Down
2 changes: 2 additions & 0 deletions nano/core_test/election_scheduler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

#include <gtest/gtest.h>

#include <chrono>

using namespace std::chrono_literals;

TEST (election_scheduler, construction)
Expand Down
1 change: 1 addition & 0 deletions nano/core_test/node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
#include <boost/filesystem.hpp>

#include <fstream>
#include <numeric>

using namespace std::chrono_literals;

Expand Down
2 changes: 2 additions & 0 deletions nano/core_test/optimistic_scheduler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

#include <gtest/gtest.h>

#include <chrono>

using namespace std::chrono_literals;

/*
Expand Down
2 changes: 2 additions & 0 deletions nano/core_test/telemetry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@

#include <gtest/gtest.h>

#include <numeric>

using namespace std::chrono_literals;

TEST (telemetry, consolidate_data)
Expand Down
1 change: 1 addition & 0 deletions nano/core_test/toml.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

#include <boost/filesystem.hpp>

#include <numeric>
#include <sstream>
#include <string>

Expand Down
1 change: 1 addition & 0 deletions nano/core_test/websocket.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

#include <boost/property_tree/json_parser.hpp>

#include <chrono>
#include <cstdlib>
#include <memory>
#include <sstream>
Expand Down
1 change: 1 addition & 0 deletions nano/load_test/entry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#include <nano/boost/beast/http.hpp>
#include <nano/boost/process/child.hpp>
#include <nano/lib/thread_runner.hpp>
#include <nano/lib/threading.hpp>
#include <nano/lib/tomlconfig.hpp>
#include <nano/node/daemonconfig.hpp>
#include <nano/secure/utility.hpp>
Expand Down
1 change: 1 addition & 0 deletions nano/test_common/chains.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

#include <gtest/gtest.h>

#include <memory>
#include <vector>

/*
Expand Down
2 changes: 2 additions & 0 deletions nano/test_common/network.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
#include <nano/test_common/system.hpp>
#include <nano/test_common/testutil.hpp>

#include <gtest/gtest.h>

#include <chrono>
#include <future>

Expand Down
1 change: 1 addition & 0 deletions nano/test_common/testutil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

#include <gtest/gtest.h>

#include <cstdlib>
#include <numeric>

using namespace std::chrono_literals;
Expand Down

0 comments on commit cefcbce

Please sign in to comment.