We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3da4729 commit 9deafbfCopy full SHA for 9deafbf
CMakeLists.txt
@@ -1,7 +1,5 @@
1
if(${CMAKE_VERSION} VERSION_LESS 3.27.0)
2
cmake_minimum_required(VERSION 3.0)
3
-elseif(${CMAKE_VERSION} VERSION_LESS 3.31.0)
4
- cmake_minimum_required(VERSION 3.6)
5
else()
6
cmake_minimum_required(VERSION 3.10)
7
endif()
samples/HexDump/Main.cpp
@@ -39,6 +39,6 @@ int main()
39
40
void* p = malloc(100);
41
PLOGI << "p: " << plog::hexdump(p, 100);
42
-
+ free(p);
43
return 0;
44
}
0 commit comments