summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2019-08-02 07:25:13 +0200
committerMax Kellermann <max@musicpd.org>2019-08-03 12:57:56 +0200
commit8f981845dc7376824d94fd24924788c582942929 (patch)
tree917a57b27067e0082f5a3f4df70fd77e479e3a1e /doc
parentc764b70b3a9a74afd12c53932194ec84d6e440d0 (diff)
switch to C++17
Time to move on, two years after 2017.
Diffstat (limited to 'doc')
-rw-r--r--doc/developer.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/developer.rst b/doc/developer.rst
index 5296314f9..717e72ffc 100644
--- a/doc/developer.rst
+++ b/doc/developer.rst
@@ -12,7 +12,7 @@ Code Style
* indent with tabs (width 8)
* don't write CPP when you can write C++: use inline functions and constexpr instead of macros
* comment your code, document your APIs
-* the code should be C++14 compliant, and must compile with :program:`GCC` 6.0 and :program:`clang` 3.4
+* the code should be C++17 compliant, and must compile with :program:`GCC` 7 and :program:`clang` 4
* report error conditions with C++ exceptions, preferable derived from :envvar:`std::runtime_error`
* all code must be exception-safe
* classes and functions names use CamelCase; variables are lower-case with words separated by underscore