We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3007d1 commit 48a4e26Copy full SHA for 48a4e26
2 files changed
CMakeLists.txt
@@ -31,7 +31,7 @@ endif()
31
32
# Define project
33
project(Monitoring
34
- VERSION 3.17.6
+ VERSION 3.18.0
35
DESCRIPTION "O2 Monitoring library"
36
LANGUAGES CXX
37
)
@@ -217,7 +217,7 @@ target_compile_definitions(Monitoring
217
218
219
# Use C++17
220
-target_compile_features(Monitoring PUBLIC cxx_std_17)
+target_compile_features(Monitoring PUBLIC cxx_std_20)
221
222
223
####################################
src/ProcessDetails.cxx
@@ -59,7 +59,7 @@ inline void ProcessDetails::generateProcessName()
59
#endif
60
61
if (mProcessName.empty()) {
62
- mProcessName = "!";
+ mProcessName = "<undefined>";
63
} else {
64
mProcessName = mProcessName.substr(mProcessName.find_last_of("/") + 1);
65
}
0 commit comments