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:
authorSergey Yershov <yershov@corp.mail.ru>2015-04-09 13:08:06 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:45:47 +0300
commitd4c11fa36fb25b70f7a1911e4a5ac651505969d4 (patch)
treea9ec0ac9d451e727254877d203785d60d5358505 /coding/reader.hpp
parentd579107a44ce512dbe4d6ac0138f0e8ddd2b1d7a (diff)
Fix include path for coding
Diffstat (limited to 'coding/reader.hpp')
-rw-r--r--coding/reader.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/coding/reader.hpp b/coding/reader.hpp
index ce4f0b7987..b7fa24253e 100644
--- a/coding/reader.hpp
+++ b/coding/reader.hpp
@@ -1,13 +1,13 @@
#pragma once
-#include "endianness.hpp"
+#include "coding/endianness.hpp"
-#include "../base/assert.hpp"
-#include "../base/exception.hpp"
+#include "base/assert.hpp"
+#include "base/exception.hpp"
-#include "../std/shared_array.hpp"
-#include "../std/shared_ptr.hpp"
-#include "../std/string.hpp"
-#include "../std/cstring.hpp"
+#include "std/shared_array.hpp"
+#include "std/shared_ptr.hpp"
+#include "std/string.hpp"
+#include "std/cstring.hpp"
// Base class for random-access Reader. Not thread-safe.