From 0eb7bc400b6444120f449663c9806a8902595ea6 Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Fri, 24 Jan 2025 16:32:19 -0500 Subject: [PATCH] remove stray g --- CMakeLists.txt | 2 +- src/main.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 355f39c..7903257 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) diff --git a/src/main.cpp b/src/main.cpp index 46c8acf..6da4d76 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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 }