diff options
-rw-r--r-- | README.adoc | 3 | ||||
-rw-r--r-- | include/mastodonpp.hpp | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/README.adoc b/README.adoc index 100bd00..2844ea7 100644 --- a/README.adoc +++ b/README.adoc @@ -107,7 +107,8 @@ yum install ./libmastodonpp*.rpm ==== Dependencies * Tested OS: Linux -* C++ compiler (tested: link:{uri-gcc}[GCC] 7/8/9, link:{uri-clang}[clang] 6/7) +* C\++ compiler with C++17 support (tested: link:{uri-gcc}[GCC] 7/8/9, + link:{uri-clang}[clang] 6/7) * link:{uri-cmake}[CMake] (at least: 3.9) * link:{uri-libcurl}[libcurl] (at least: 7.56) * Optional diff --git a/include/mastodonpp.hpp b/include/mastodonpp.hpp index d9655b3..16a7dd5 100644 --- a/include/mastodonpp.hpp +++ b/include/mastodonpp.hpp @@ -46,6 +46,9 @@ * * Or compile your code with `g++ $(pkg-config --cflags --libs mastodonpp)`. * + * Since we use C++17 features in the headers of this library, your program + * needs to be compiled as C++17 or higher too. + * * @subsection example Example * * @code |