Skip to content

Commit 35d8536

Browse files
committed
Fixed failing build
1 parent fdf3f3e commit 35d8536

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@ cmake-build-release-coverage
55
cmake-build-debug-coverage
66
# Ignore .idea folder generated by CLion
77
.idea
8+
# Ignore build directory
9+
build

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ FetchContent_MakeAvailable(googletest)
4545
FetchContent_Declare(
4646
googlebenchmark
4747
GIT_REPOSITORY https://github.com/google/benchmark.git
48-
GIT_TAG master
48+
GIT_TAG main
4949
)
5050
set(BENCHMARK_ENABLE_TESTING off)
5151
FetchContent_MakeAvailable(googlebenchmark)
@@ -56,7 +56,7 @@ FetchContent_MakeAvailable(googlebenchmark)
5656
FetchContent_Declare(
5757
spdlog
5858
GIT_REPOSITORY https://github.com/gabime/spdlog.git
59-
GIT_TAG v1.x
59+
GIT_TAG v1.8.5
6060
)
6161
FetchContent_MakeAvailable(spdlog)
6262

include/matching/orderbook/symbol.h

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#ifndef RAPID_TRADER_SYMBOL_H
22
#define RAPID_TRADER_SYMBOL_H
33
#include <iostream>
4+
#include <cstdint>
45

56
namespace RapidTrader {
67
/**

src/utils/log.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ void Log::init()
88
spdlog::set_pattern("%^[%T] %n: %v%$");
99
logger = spdlog::stdout_color_mt("Fast Exchange");
1010
logger->set_level(spdlog::level::trace);
11-
}
11+
}

0 commit comments

Comments
 (0)