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-10 11:49:30 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:45:54 +0300
commite605a3ac816747cb7e5d5d207e8f8cbe28d162db (patch)
tree2fefddfb50ff072ed0a71ad3383f410712c5eb0c /platform/platform.hpp
parentdf219f2ebab7e126caa74b976652afee4f1b9ca5 (diff)
Fix include path for platform
Diffstat (limited to 'platform/platform.hpp')
-rw-r--r--platform/platform.hpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/platform/platform.hpp b/platform/platform.hpp
index 2e2654068a..7d916994c6 100644
--- a/platform/platform.hpp
+++ b/platform/platform.hpp
@@ -1,16 +1,16 @@
#pragma once
-#include "../coding/reader.hpp"
+#include "coding/reader.hpp"
-#include "../base/exception.hpp"
+#include "base/exception.hpp"
-#include "../std/string.hpp"
-#include "../std/vector.hpp"
-#include "../std/utility.hpp"
-#include "../std/function.hpp"
-#include "../std/bitset.hpp"
+#include "std/string.hpp"
+#include "std/vector.hpp"
+#include "std/utility.hpp"
+#include "std/function.hpp"
+#include "std/bitset.hpp"
-#include "../defines.hpp"
+#include "defines.hpp"
DECLARE_EXCEPTION(FileAbsentException, RootException);