diff options
Diffstat (limited to 'runtime/base/logging.h')
| -rw-r--r-- | runtime/base/logging.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/runtime/base/logging.h b/runtime/base/logging.h index 35b50d1e45..2cd1a4de9f 100644 --- a/runtime/base/logging.h +++ b/runtime/base/logging.h @@ -17,7 +17,6 @@ #ifndef ART_RUNTIME_BASE_LOGGING_H_ #define ART_RUNTIME_BASE_LOGGING_H_ -#include <memory> #include <ostream> #include "base/macros.h" @@ -238,7 +237,7 @@ class LogMessage { public: LogMessage(const char* file, unsigned int line, LogSeverity severity, int error); - ~LogMessage(); // TODO: enable LOCKS_EXCLUDED(Locks::logging_lock_). + ~LogMessage(); // TODO: enable REQUIRES(!Locks::logging_lock_). // Returns the stream associated with the message, the LogMessage performs output when it goes // out of scope. |