Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ endif()

# Define project
project(Monitoring
VERSION 3.17.6
VERSION 3.18.0
DESCRIPTION "O2 Monitoring library"
LANGUAGES CXX
)
Expand Down Expand Up @@ -217,7 +217,7 @@ target_compile_definitions(Monitoring
)

# Use C++17
target_compile_features(Monitoring PUBLIC cxx_std_17)
target_compile_features(Monitoring PUBLIC cxx_std_20)


####################################
Expand Down
2 changes: 1 addition & 1 deletion src/ProcessDetails.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ inline void ProcessDetails::generateProcessName()
#endif

if (mProcessName.empty()) {
mProcessName = "!";
mProcessName = "<undefined>";
} else {
mProcessName = mProcessName.substr(mProcessName.find_last_of("/") + 1);
}
Expand Down