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>2010-12-11 17:47:40 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:08:33 +0300
commited9abd7b505dc4537888c12b29784348c6ed3528 (patch)
treedfde732411dd04c0dfab5e287f2124813409d687 /coding/byte_stream.hpp
parent3e8b50b92510c6ff54e23978468e3d963e290ce2 (diff)
[Refactoring]. Divide Feature class to:
- FeatureBase (base feature class) - FeatureGeom (store geometry itself) - FeatureGeomRef (in future, store reference to geometry).
Diffstat (limited to 'coding/byte_stream.hpp')
-rw-r--r--coding/byte_stream.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/coding/byte_stream.hpp b/coding/byte_stream.hpp
index e006ced5ef..0bc7d613ac 100644
--- a/coding/byte_stream.hpp
+++ b/coding/byte_stream.hpp
@@ -1,8 +1,9 @@
#pragma once
#include "../base/base.hpp"
+
#include "../std/vector.hpp"
#include "../std/memcpy.hpp"
-#include "../base/start_mem_debug.hpp"
+
class ArrayByteSource
{
@@ -56,5 +57,3 @@ private:
TStorage & m_Storage;
size_t m_InitialStorageSize;
};
-
-#include "../base/stop_mem_debug.hpp"