1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-07-14 16:10:24 +03:00

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.
This commit is contained in:
Coleman McFarland 2024-05-22 19:18:47 -04:00 committed by GitHub
parent 1bd50261c8
commit 2c1e238a0c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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++