1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
Description: Do not take address of rvalue, rather simply append value into ostringstream and convert to string with str()
Author: Nilesh Patra <nilesh@debian.org>
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=997122
Last-Update: 2021-10-31
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,7 +1,7 @@
cmake_minimum_required (VERSION 2.6)
project (assembly-stats)
-set (CMAKE_CXX_FLAGS "-Wall -O3 -pthread")
+set (CMAKE_CXX_FLAGS "-Wall -g -O3 -pthread")
file(COPY test_files DESTINATION ${CMAKE_CURRENT_BINARY_DIR})
#add_subdirectory(gtest-1.7.0)
|