remove stray g

main
Brett 2025-01-24 16:32:19 -05:00
parent 92a71eeb57
commit 0eb7bc400b
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.25)
project(COSC-4P80-Assignment-3 VERSION 0.0.34)
project(COSC-4P80-Assignment-3 VERSION 0.0.35)
include(FetchContent)
option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF)

View File

@ -23,7 +23,7 @@ void plot_heatmap(const std::string& path, const std::string& activations_csv, c
const std::string command = "cd '" + path + "' && python3 '" + pwd + "../plot_heatmap.py' '" + activations_csv + "' '" + std::to_string(bin_size)
+
"' '" + subtitle + "'";
BLT_TRACE(command);g
BLT_TRACE(command);
std::system(command.c_str());
#endif
}