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:
authorgreshilov <slovaricheg@gmail.com>2018-05-30 18:43:47 +0300
committermpimenov <mpimenov@users.noreply.github.com>2018-05-30 18:56:14 +0300
commitd238d18469b9d7c30eba867e3ec24e6fcd595514 (patch)
tree06d4bca2720601bef6b62aa04ee192e87e808ddf /docs
parent4d866684745c134a562172b751ba1d8d437a5213 (diff)
[docs] Fix minimal clang version
Diffstat (limited to 'docs')
-rw-r--r--docs/CPP_STYLE.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/CPP_STYLE.md b/docs/CPP_STYLE.md
index 925324ca66..91334d3e4b 100644
--- a/docs/CPP_STYLE.md
+++ b/docs/CPP_STYLE.md
@@ -195,7 +195,7 @@ v = w * (x + z);
- If you see outdated code which can be improved, DO IT NOW (but in a separate pull request)!
- Your code should work at least on [mac|linux|android][x86|x86_64], [ios|android][x86|armv7|arm64] architectures
-- Your code should compile with gcc 6.0+ and clang 3.5+
+- Your code should compile with gcc 6.0+ and clang 5.0+
- Try to avoid using any new 3party library if it is not fully tested and supported on all our platforms
- Cover your code with unit tests. See examples for existing libraries
- Check Base and Coding libraries for most of the basic functions