File tree 4 files changed +6
-3
lines changed
include/matching/orderbook
4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -5,3 +5,5 @@ cmake-build-release-coverage
5
5
cmake-build-debug-coverage
6
6
# Ignore .idea folder generated by CLion
7
7
.idea
8
+ # Ignore build directory
9
+ build
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ FetchContent_MakeAvailable(googletest)
45
45
FetchContent_Declare(
46
46
googlebenchmark
47
47
GIT_REPOSITORY https://github.com/google/benchmark.git
48
- GIT_TAG master
48
+ GIT_TAG main
49
49
)
50
50
set (BENCHMARK_ENABLE_TESTING off )
51
51
FetchContent_MakeAvailable(googlebenchmark)
@@ -56,7 +56,7 @@ FetchContent_MakeAvailable(googlebenchmark)
56
56
FetchContent_Declare(
57
57
spdlog
58
58
GIT_REPOSITORY https://github.com/gabime/spdlog.git
59
- GIT_TAG v1.x
59
+ GIT_TAG v1.8.5
60
60
)
61
61
FetchContent_MakeAvailable(spdlog)
62
62
Original file line number Diff line number Diff line change 1
1
#ifndef RAPID_TRADER_SYMBOL_H
2
2
#define RAPID_TRADER_SYMBOL_H
3
3
#include < iostream>
4
+ #include < cstdint>
4
5
5
6
namespace RapidTrader {
6
7
/* *
Original file line number Diff line number Diff line change @@ -8,4 +8,4 @@ void Log::init()
8
8
spdlog::set_pattern (" %^[%T] %n: %v%$" );
9
9
logger = spdlog::stdout_color_mt (" Fast Exchange" );
10
10
logger->set_level (spdlog::level::trace);
11
- }
11
+ }
You can’t perform that action at this time.
0 commit comments