From db71707be4befa5f67bae059b01a63cab44b965d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanislav=20Angelovi=C4=8D?= Date: Sat, 1 Feb 2020 23:03:44 +0100 Subject: [PATCH] Update tutorial for for full use of C++17 --- docs/using-sdbus-c++.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/using-sdbus-c++.md b/docs/using-sdbus-c++.md index 996848b..d6f72e1 100644 --- a/docs/using-sdbus-c++.md +++ b/docs/using-sdbus-c++.md @@ -51,7 +51,7 @@ PKG_CHECK_MODULES(SDBUSCPP, [sdbus-c++ >= 0.6],, ) ``` -Note: sdbus-c++ library depends on C++17, since it uses C++17 `std::uncaught_exceptions()` feature. When building sdbus-c++ manually, make sure you use a compiler that supports that feature. To use the library, make sure you have a C++ standard library that supports the feature. The feature is supported by e.g. gcc >= 6, and clang >= 3.7. +Note: sdbus-c++ library uses a number of modern C++17 features. Please make certain you have a recent compiler (gcc >= 7, clang >= 6). Solving libsystemd dependency -----------------------------