Commit 633f276b authored by brettw@chromium.org's avatar brettw@chromium.org

Revert log change to thread_local_win to fix an internal compiler error when

doing official Chrome builds.

TBR=1aforge
Review URL: http://codereview.chromium.org/8424004

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@107910 0039d316-1c4b-4281-b951-d872f2087c98
parent e728d1db
...@@ -33,7 +33,7 @@ void* ThreadLocalPlatform::GetValueFromSlot(SlotType& slot) { ...@@ -33,7 +33,7 @@ void* ThreadLocalPlatform::GetValueFromSlot(SlotType& slot) {
// static // static
void ThreadLocalPlatform::SetValueInSlot(SlotType& slot, void* value) { void ThreadLocalPlatform::SetValueInSlot(SlotType& slot, void* value) {
if (!TlsSetValue(slot, value)) { if (!TlsSetValue(slot, value)) {
DLOG(FATAL) << "Failed to TlsSetValue()."; LOG(FATAL) << "Failed to TlsSetValue().";
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment