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

Unified Diff: third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp

Issue 2761493002: [Bindings] Replace void cast with ALLOW_UNUSED_LOCAL in dictionary_v8.cpp.tmpl. (Closed)
Patch Set: Created 3 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
Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp
index b205b572f62707bfaf559620a305108a0d7ec793..eb80d61b12378121b62a069313e9567569c8b7c5 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp
+++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp
@@ -40,7 +40,7 @@ void V8TestDictionary::toImpl(v8::Isolate* isolate, v8::Local<v8::Value> v8Value
return;
}
v8::Local<v8::Object> v8Object = v8Value.As<v8::Object>();
- (void)v8Object;
+ ALLOW_UNUSED_LOCAL(v8Object);
v8::TryCatch block(isolate);
v8::Local<v8::Value> anyMemberValue;

Powered by Google App Engine
This is Rietveld 408576698