commit | 606258b5713ac3a0958db3b4b98074b6df6439a6 | [log] [tgz] |
---|---|---|
author | Carl Shapiro <cshapiro@google.com> | Sat Jul 09 16:09:09 2011 -0700 |
committer | Carl Shapiro <cshapiro@google.com> | Sat Jul 09 16:09:09 2011 -0700 |
tree | 533dcdd0d2b11af9a3cc132edab6c90ef8246d03 | |
parent | 5fafe2b12d465cdee6fab76a06c78cef0a6776b6 [diff] [blame] |
Explicitly convert type to an int before writing to the log stream. Change-Id: Icb242d2c63b2824ac2f832b17949b8e2d2fac8a4
diff --git a/src/class_linker.cc b/src/class_linker.cc index 8e43135..3475bd1 100644 --- a/src/class_linker.cc +++ b/src/class_linker.cc
@@ -412,7 +412,7 @@ field->SetObject(value.l); break; default: - LOG(FATAL) << "Unknown type " << type; + LOG(FATAL) << "Unknown type " << static_cast<int>(type); } } }