Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(968)

Unified Diff: src/lazy-instance.h

Issue 9960006: Fix broken build on Windows due to r11198. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/platform-win32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/lazy-instance.h
diff --git a/src/lazy-instance.h b/src/lazy-instance.h
index 7534d9bc0c19495879747af8c98ceccfd20de331..4beb55c0a291b05cf91bde23ffd8af03f1be9f6a 100644
--- a/src/lazy-instance.h
+++ b/src/lazy-instance.h
@@ -191,7 +191,7 @@ struct LazyInstanceImpl {
&once_,
// Casts to void* are needed here to avoid breaking strict aliasing
// rules.
- reinterpret_cast<void (*)(void*)>(&InitInstance),
+ reinterpret_cast<void(*)(void*)>(&InitInstance), // NOLINT
reinterpret_cast<void*>(&storage_));
}
« no previous file with comments | « no previous file | src/platform-win32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698