diff options
-rw-r--r-- | base/debug/trace_event.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/debug/trace_event.h b/base/debug/trace_event.h index c6d62bc..8996a58 100644 --- a/base/debug/trace_event.h +++ b/base/debug/trace_event.h @@ -639,7 +639,7 @@ class BASE_EXPORT TraceValue { // same pointer is used on different processes. class BASE_EXPORT TraceID { public: - TraceID() : data_(NULL) {} + TraceID() : data_(0u) {} TraceID(void* rhs); TraceID(unsigned long long rhs) : data_(static_cast<uint64>(rhs)) {} TraceID(unsigned long rhs) : data_(static_cast<uint64>(rhs)) {} |