summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColeman McFarland <43583445+dontlaugh@users.noreply.github.com>2024-05-22 19:18:47 -0400
committerGitHub <noreply@github.com>2024-05-22 19:18:47 -0400
commit2c1e238a0ca706f489c3bd3decce85baafbb98ab (patch)
tree99572d69557146134fe21a29dcda66a65276a77f
parent1bd50261c8c1c867f76e79f626dc571981f15bfd (diff)
doc: declare C++20 as the language version
Technically we seem to be compiling with `-std=c++2a` which (if I understand correctly) is "all the features we have from 23 and up. But 20 is the earliest version that compiles for me (with clang). 14 and 17 didn't work.
-rw-r--r--doc/coding-style.asciidoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/coding-style.asciidoc b/doc/coding-style.asciidoc
index 3deb24df..2885a4ac 100644
--- a/doc/coding-style.asciidoc
+++ b/doc/coding-style.asciidoc
@@ -1,7 +1,7 @@
C++ Coding Style
================
-Kakoune is written in C++14, here are the main coding style points:
+Kakoune is written in C++20, here are the main coding style points:
* Avoid external dependencies besides posix/stdc++