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/writer.hpp
parentd579107a44ce512dbe4d6ac0138f0e8ddd2b1d7a (diff)
Fix include path for coding
Diffstat (limited to 'coding/writer.hpp')
-rw-r--r--coding/writer.hpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/coding/writer.hpp b/coding/writer.hpp
index fcc7208a9f..dd87b865a1 100644
--- a/coding/writer.hpp
+++ b/coding/writer.hpp
@@ -1,12 +1,12 @@
#pragma once
-#include "../base/assert.hpp"
-#include "../base/base.hpp"
-#include "../base/exception.hpp"
-#include "../std/algorithm.hpp"
-#include "../std/shared_ptr.hpp"
-#include "../std/cstring.hpp"
-#include "../std/string.hpp"
-#include "../std/vector.hpp"
+#include "base/assert.hpp"
+#include "base/base.hpp"
+#include "base/exception.hpp"
+#include "std/algorithm.hpp"
+#include "std/shared_ptr.hpp"
+#include "std/cstring.hpp"
+#include "std/string.hpp"
+#include "std/vector.hpp"
// Generic Writer. Not thread-safe.
// When SubWriter is used, pos can negative, so int64_t is used to store pos.