summaryrefslogtreecommitdiff
path: root/doc/developer.rst
diff options
context:
space:
mode:
Diffstat (limited to 'doc/developer.rst')
-rw-r--r--doc/developer.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/developer.rst b/doc/developer.rst
index 1bfb0d131..a534c0ec0 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++17 compliant, and must compile with :program:`GCC` 7 and :program:`clang` 4
+* the code should be C++17 compliant, and must compile with :program:`GCC` 8 and :program:`clang` 5
* all code must be exception-safe
* classes and functions names use CamelCase; variables are lower-case with words separated by underscore