| Index: third_party/WebKit/Source/wtf/ThreadSpecificWin.cpp
|
| diff --git a/third_party/WebKit/Source/wtf/ThreadSpecificWin.cpp b/third_party/WebKit/Source/wtf/ThreadSpecificWin.cpp
|
| index 61e0b50103ab7f7ac6f11850980943599bfb4a6f..9e93dbce94c53771287629dcf48689054e4bffe7 100644
|
| --- a/third_party/WebKit/Source/wtf/ThreadSpecificWin.cpp
|
| +++ b/third_party/WebKit/Source/wtf/ThreadSpecificWin.cpp
|
| @@ -107,7 +107,9 @@ void* threadSpecificGet(ThreadSpecificKey key) {
|
|
|
| void ThreadSpecificThreadExit() {
|
| for (long i = 0; i < tlsKeyCount(); i++) {
|
| - // The layout of ThreadSpecific<T>::Data does not depend on T. So we are safe to do the static cast to ThreadSpecific<int> in order to access its data member.
|
| + // The layout of ThreadSpecific<T>::Data does not depend on T. So we are
|
| + // safe to do the static cast to ThreadSpecific<int> in order to access its
|
| + // data member.
|
| ThreadSpecific<int>::Data* data =
|
| static_cast<ThreadSpecific<int>::Data*>(TlsGetValue(tlsKeys()[i]));
|
| if (data)
|
|
|