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

Unified Diff: runtime/vm/dart_api_impl.cc

Issue 1287883004: Fix the Mac build (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/dart_api_impl.cc
diff --git a/runtime/vm/dart_api_impl.cc b/runtime/vm/dart_api_impl.cc
index ff30eaf78205a3ad8d1070c81bdce15a1b0b322a..9570aa0179d66a6ed2b160cf1f703b8648acc5da 100644
--- a/runtime/vm/dart_api_impl.cc
+++ b/runtime/vm/dart_api_impl.cc
@@ -2793,7 +2793,7 @@ DART_EXPORT Dart_Handle Dart_ListGetRange(Dart_Handle list,
args.SetAt(1, index);
Dart_Handle value = Api::NewHandle(isolate,
DartEntry::InvokeFunction(function, args));
- if (Dart_IsError(value))
+ if (::Dart_IsError(value))
return value;
result[i] = value;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698