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

Unified Diff: runtime/vm/dart_api_impl.cc

Issue 2223863003: Fix Windows build (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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 4f8c0604d9205de1fb5a406367dbdbb11f97a8f0..52f37bbea37a31f1fc92fe77b9cae32af360088f 100644
--- a/runtime/vm/dart_api_impl.cc
+++ b/runtime/vm/dart_api_impl.cc
@@ -1459,7 +1459,7 @@ DART_EXPORT void Dart_SetStickyError(Dart_Handle error) {
if (isolate->sticky_error() != Error::null()) {
FATAL1("%s expects there to be no sticky error.", CURRENT_FUNC);
}
- if (!Dart_IsUnhandledExceptionError(error)) {
+ if (!::Dart_IsUnhandledExceptionError(error)) {
FATAL1("%s expects the error to be an unhandled exception error.",
CURRENT_FUNC);
}
« 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