summaryrefslogtreecommitdiffstats
path: root/runtime/base
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2013-07-19 11:24:50 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-07-19 11:24:50 -0700
commitc06d623988436a0dcfab7643cc971a88f00f31ed (patch)
tree71439a57d484686c3a389421314fc443aad24b20 /runtime/base
parentebd66389dacec3118232fbd426c70dbed573cff1 (diff)
parent3e79aadc447dcdb9e52368baced9405667e68e6a (diff)
downloadart-c06d623988436a0dcfab7643cc971a88f00f31ed.zip
art-c06d623988436a0dcfab7643cc971a88f00f31ed.tar.gz
art-c06d623988436a0dcfab7643cc971a88f00f31ed.tar.bz2
am 3e79aadc: Fixing cpplint readability/constructors issues
* commit '3e79aadc447dcdb9e52368baced9405667e68e6a': Fixing cpplint readability/constructors issues
Diffstat (limited to 'runtime/base')
-rw-r--r--runtime/base/logging.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/runtime/base/logging.h b/runtime/base/logging.h
index f02a39a..af2cdb3 100644
--- a/runtime/base/logging.h
+++ b/runtime/base/logging.h
@@ -215,10 +215,7 @@ class HexDump {
size_t byte_count_;
bool show_actual_addresses_;
- // TODO: Remove the #if when Mac OS build server no longer uses GCC 4.2.*.
-#if GCC_VERSION >= 40300
DISALLOW_COPY_AND_ASSIGN(HexDump);
-#endif
};
std::ostream& operator<<(std::ostream& os, const HexDump& rhs);
@@ -240,10 +237,7 @@ class Dumpable {
private:
T& value_;
-// TODO: Remove the #if when Mac OS build server no longer uses GCC 4.2.*.
-#if GCC_VERSION >= 40300
DISALLOW_COPY_AND_ASSIGN(Dumpable);
-#endif
};
template<typename T>
@@ -266,10 +260,7 @@ class MutatorLockedDumpable {
private:
T& value_;
-// TODO: Remove the #if when Mac OS build server no longer uses GCC 4.2.*.
-#if GCC_VERSION >= 40300
DISALLOW_COPY_AND_ASSIGN(MutatorLockedDumpable);
-#endif
};
template<typename T>