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
path: root/base
diff options
context:
space:
mode:
authorArsentiy Milchakov <milcars@mapswithme.com>2016-12-08 19:06:48 +0300
committerArsentiy Milchakov <milcars@mapswithme.com>2016-12-08 19:06:48 +0300
commit6cc828ca8f7030f84b47e73ab190899372b25582 (patch)
tree155aa3d7bd1336d88dc23b5b9f3030012d860e6f /base
parent4dd483374d43059e60ea7c24f4abb0e391215e47 (diff)
[core] uber into place page
Diffstat (limited to 'base')
-rw-r--r--base/macros.hpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/base/macros.hpp b/base/macros.hpp
index 4f9373f7ee..59cda11012 100644
--- a/base/macros.hpp
+++ b/base/macros.hpp
@@ -16,13 +16,11 @@ namespace my
#define ARRAY_SIZE(X) sizeof(::my::impl::ArraySize(X))
#define DISALLOW_COPY(className) \
-private: \
className(className const &) = delete; \
className & operator=(className const &) = delete
#define DISALLOW_MOVE(className) \
-private: \
className(className &&) = delete; \
className & operator=(className &&) = delete