- logging example done!
- changed order of printing captures when an exception has occurred
diff --git a/examples/all_features/CMakeLists.txt b/examples/all_features/CMakeLists.txt
index 690bebe..7c12048 100644
--- a/examples/all_features/CMakeLists.txt
+++ b/examples/all_features/CMakeLists.txt
@@ -60,6 +60,7 @@
# TODO: think about fixing these in a different way! - see issue #61 or commit 6b61e8aa3818c5ea100cedc1bb48a60ea10df6e8
if(CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
target_compile_options(disabled PRIVATE /wd4505) # unreferenced local function has been removed
+ target_compile_options(disabled PRIVATE /wd4100) # unreferenced formal parameter
elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
target_compile_options(disabled PRIVATE -Wno-unknown-warning-option)
target_compile_options(disabled PRIVATE -Wno-unneeded-internal-declaration)
@@ -67,4 +68,6 @@
target_compile_options(disabled PRIVATE -Wno-unused-local-typedef)
elseif(CMAKE_CXX_COMPILER_ID MATCHES "GNU")
target_compile_options(disabled PRIVATE -Wno-unused-local-typedefs)
+ target_compile_options(disabled PRIVATE -Wno-unused-parameter)
+ target_compile_options(disabled PRIVATE -Wno-unused-function)
endif()