diff options
-rw-r--r-- | src/logging.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/logging.h b/src/logging.h index df6afce..7c04777 100644 --- a/src/logging.h +++ b/src/logging.h @@ -211,7 +211,11 @@ class HexDump { const void* address_; 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); |