From b51a5363b2bd867fc3110b39e65e949c617d88a0 Mon Sep 17 00:00:00 2001 From: Brett Date: Tue, 14 Mar 2023 18:02:20 -0400 Subject: [PATCH] fix --- CMakeLists.txt | 2 +- cmake-build-release/CMakeCache.txt | 4 ++-- cmake-build-release/CMakeFiles/clion-Release-log.txt | 2 +- include/blt/math/log_util.h | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f288a84..abc4748 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.24) -project(BLT VERSION 0.5.1) +project(BLT VERSION 0.5.2) set(CMAKE_CXX_STANDARD 17) diff --git a/cmake-build-release/CMakeCache.txt b/cmake-build-release/CMakeCache.txt index 8125f20..9b15c0f 100644 --- a/cmake-build-release/CMakeCache.txt +++ b/cmake-build-release/CMakeCache.txt @@ -181,7 +181,7 @@ CMAKE_PROJECT_HOMEPAGE_URL:STATIC= CMAKE_PROJECT_NAME:STATIC=BLT_TESTS //Value Computed by CMake -CMAKE_PROJECT_VERSION:STATIC=0.5.1 +CMAKE_PROJECT_VERSION:STATIC=0.5.2 //Value Computed by CMake CMAKE_PROJECT_VERSION_MAJOR:STATIC=0 @@ -190,7 +190,7 @@ CMAKE_PROJECT_VERSION_MAJOR:STATIC=0 CMAKE_PROJECT_VERSION_MINOR:STATIC=5 //Value Computed by CMake -CMAKE_PROJECT_VERSION_PATCH:STATIC=1 +CMAKE_PROJECT_VERSION_PATCH:STATIC=2 //Value Computed by CMake CMAKE_PROJECT_VERSION_TWEAK:STATIC= diff --git a/cmake-build-release/CMakeFiles/clion-Release-log.txt b/cmake-build-release/CMakeFiles/clion-Release-log.txt index 6c751e9..76b81f5 100644 --- a/cmake-build-release/CMakeFiles/clion-Release-log.txt +++ b/cmake-build-release/CMakeFiles/clion-Release-log.txt @@ -3,7 +3,7 @@ Standard Files /home/brett/Documents/code/c++/BLT/src/blt/std/filesystem.cpp;/ho Profiler Files /home/brett/Documents/code/c++/BLT/src/blt/profiling/profiler.cpp Source: /home/brett/Documents/code/c++/BLT Current Source: /home/brett/Documents/code/c++/BLT -BLT 0.5.1 Successfully included! +BLT 0.5.2 Successfully included! BLT tests included! -- Configuring done -- Generating done diff --git a/include/blt/math/log_util.h b/include/blt/math/log_util.h index febd982..dec9035 100644 --- a/include/blt/math/log_util.h +++ b/include/blt/math/log_util.h @@ -17,7 +17,7 @@ namespace blt { static inline logging::logger& operator<<(logging::logger& log, blt::vec vec){ log << "("; for (int i = 0; i < size; i++) - log << vec[i] << i == size-1 ? ")" : ", "; + log << vec[i] << ((i == size-1) ? ")" : ", "); return log; }