summaryrefslogtreecommitdiffstats
path: root/runtime/base/logging.h
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2013-07-18 18:12:42 -0700
committerBrian Carlstrom <bdc@google.com>2013-07-18 18:14:36 -0700
commit3e79aadc447dcdb9e52368baced9405667e68e6a (patch)
tree2fc63e66a72dea93364aab47bbabc274730a0a64 /runtime/base/logging.h
parent4274889d48ef82369bf2c1ca70d84689b4f9e93a (diff)
downloadandroid_art-3e79aadc447dcdb9e52368baced9405667e68e6a.tar.gz
android_art-3e79aadc447dcdb9e52368baced9405667e68e6a.tar.bz2
android_art-3e79aadc447dcdb9e52368baced9405667e68e6a.zip
Fixing cpplint readability/constructors issues
Change-Id: Idea2685007de2051f2be51a84d8956a142804402
Diffstat (limited to 'runtime/base/logging.h')
-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 f02a39a1f9..af2cdb3d1c 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>