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
diff options
context:
space:
mode:
authorvng <viktor.govako@gmail.com>2015-06-24 19:31:07 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:52:34 +0300
commit9041b8bb69d2b94956cf847e508b9c1ad8c5f190 (patch)
tree22f0cce3a8bd7ba9669d3dd3916c72593a466f73 /base/buffer_vector.hpp
parentd7dfd870746a3e89ade642fd7d2605e753bbdafd (diff)
Review fixes.
Diffstat (limited to 'base/buffer_vector.hpp')
-rw-r--r--base/buffer_vector.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/base/buffer_vector.hpp b/base/buffer_vector.hpp
index 870c854ad5..0d012209dd 100644
--- a/base/buffer_vector.hpp
+++ b/base/buffer_vector.hpp
@@ -1,13 +1,13 @@
#pragma once
#include "base/assert.hpp"
-#include "base/swap.hpp"
#include "base/stl_iterator.hpp"
+#include "base/swap.hpp"
#include "std/algorithm.hpp"
-#include "std/vector.hpp"
+#include "std/cstring.hpp" // for memcpy
#include "std/type_traits.hpp"
#include "std/utility.hpp"
-#include "../std/cstring.hpp" // for memcpy
+#include "std/vector.hpp"
template <class T, size_t N> class buffer_vector