diff options
author | Tiger Wang <ziwei.tiger@outlook.com> | 2020-05-09 15:56:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-09 15:56:39 +0200 |
commit | 804c3ba6e9e8f51f49df7cd85e547a8ff0c8bb5b (patch) | |
tree | d821dc9cc62a6a32a9b1e775bacade5b5e87946d /CONTRIBUTING.md | |
parent | Fix clang-tidy errors (#4730) (diff) | |
download | cuberite-804c3ba6e9e8f51f49df7cd85e547a8ff0c8bb5b.tar cuberite-804c3ba6e9e8f51f49df7cd85e547a8ff0c8bb5b.tar.gz cuberite-804c3ba6e9e8f51f49df7cd85e547a8ff0c8bb5b.tar.bz2 cuberite-804c3ba6e9e8f51f49df7cd85e547a8ff0c8bb5b.tar.lz cuberite-804c3ba6e9e8f51f49df7cd85e547a8ff0c8bb5b.tar.xz cuberite-804c3ba6e9e8f51f49df7cd85e547a8ff0c8bb5b.tar.zst cuberite-804c3ba6e9e8f51f49df7cd85e547a8ff0c8bb5b.zip |
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r-- | CONTRIBUTING.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 662a2bbb0..789d3998f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -14,7 +14,7 @@ When contributing, you must follow our code conventions. Otherwise, CI builds wi Here are the conventions: - - We use the subset of C++11 supported by MSVC 2013 (ask if you think that something outside of this subset would be useful) + - We use C++17. - All new public functions in all classes need documenting comments on what they do and what behavior they follow, use doxy-comments formatted as `/** Description */`. Do not use asterisks on additional lines in multi-line comments. - Use spaces after the comment markers: `// Comment` instead of `//Comment`. A comment must be prefixed with two spaces if it's on the same line with code: - `SomeFunction()<Space><Space>//<Space>Note the two spaces prefixed to me and the space after the slashes.` |