Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlex Zolotarev <alex@maps.me>2015-10-12 17:59:59 +0300
committerAlex Zolotarev <alex@maps.me>2015-10-12 17:59:59 +0300
commita3cf5d1098ab8b3ea90985ea62f05fcc7918438e (patch)
tree9f1e4f8c88cfabfdf50f5871a521b1ea6f2d9e47 /docs
parente9e28ef99e8b1ac4398ea7c43cb77aef990af57f (diff)
Explicit statement for C++11 standard usage.
Diffstat (limited to 'docs')
-rw-r--r--docs/CPP_STYLE.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/CPP_STYLE.md b/docs/CPP_STYLE.md
index 0243308b1b..e9fa1646e9 100644
--- a/docs/CPP_STYLE.md
+++ b/docs/CPP_STYLE.md
@@ -4,6 +4,7 @@ In general, [Google's coding standard](http://google-styleguide.googlecode.com/s
Below are our specific (but not all!) exceptions to the Google's coding standard:
+- All code should conform to C++11 standard (not C++14 or higher). If target platform does not support all features of C++11, older C++ standard should be used.
- We use `.cpp` and `.hpp` files, not `.cc` and `.h` (`.c` and `.h` are used for C code), in UTF-8 encoding.
- File names are lowercase with underscores, like `file_reader.cpp`.
- We use `#pragma once` instead of the `#define` Guard in header files.