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:
authortatiana-yan <tatiana.kondakova@gmail.com>2019-09-19 13:36:28 +0300
committergmoryes <gmoryes@gmail.com>2019-09-19 18:48:06 +0300
commitbd5abcf5a8ca3e71b3de2b8ea7d3ae5406bd40af (patch)
treecd000d4ef0e6107fdb1723742afeed284c89793e /docs
parentf8a8e0038cde418528c620fc60ffcbce60408c4f (diff)
Got rid of the old style std/ includes for several files.
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 6363db47e6..f75184e417 100644
--- a/docs/CPP_STYLE.md
+++ b/docs/CPP_STYLE.md
@@ -48,7 +48,7 @@ To automatically format a file, install `clang-format` and run:
```cpp
#pragma once
-#include "std/math.hpp"
+#include <math>
uint16_t constexpr kBufferSize = 255;