diff options
author | worktycho <work.tycho@gmail.com> | 2014-03-09 19:57:43 +0100 |
---|---|---|
committer | worktycho <work.tycho@gmail.com> | 2014-03-09 19:57:43 +0100 |
commit | 2eaae82a2a6f22b684ea153267c8f06f18145753 (patch) | |
tree | 1a7b4a27c3c75ca92f31d410ae605347c94f2611 /CONTRIBUTING.md | |
parent | Fixed #778 - stack overflow.com (diff) | |
download | cuberite-2eaae82a2a6f22b684ea153267c8f06f18145753.tar cuberite-2eaae82a2a6f22b684ea153267c8f06f18145753.tar.gz cuberite-2eaae82a2a6f22b684ea153267c8f06f18145753.tar.bz2 cuberite-2eaae82a2a6f22b684ea153267c8f06f18145753.tar.lz cuberite-2eaae82a2a6f22b684ea153267c8f06f18145753.tar.xz cuberite-2eaae82a2a6f22b684ea153267c8f06f18145753.tar.zst cuberite-2eaae82a2a6f22b684ea153267c8f06f18145753.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 7ec7058ae..0c36be8b7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,7 +1,7 @@ Code Stuff ---------- - * We use C++03 + * We use C++03 with some C++11 extensions (ask if you think that something would be useful) * Use the provided wrappers for OS stuff: - Threading is done by inheriting from `cIsThread`, thread synchronization through `cCriticalSection`, `cSemaphore` and `cEvent`, file access and filesystem operations through the `cFile` class, high-precision timers through `cTimer`, high-precision sleep through `cSleep` * No magic numbers, use named constants: |