From be003d70f230828bb373a8891cff5a3cbb272adb Mon Sep 17 00:00:00 2001 From: Matthias Hausner Date: Fri, 16 Sep 2016 11:16:50 -0700 Subject: [PATCH] Fix Windows build BUG= Review URL: https://codereview.chromium.org/2342303003 . --- runtime/vm/dart_api_impl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/vm/dart_api_impl.cc b/runtime/vm/dart_api_impl.cc index f850c99dca0..ff628394146 100644 --- a/runtime/vm/dart_api_impl.cc +++ b/runtime/vm/dart_api_impl.cc @@ -770,7 +770,7 @@ DART_EXPORT bool Dart_IsUnhandledExceptionError(Dart_Handle object) { DART_EXPORT bool Dart_IsCompilationError(Dart_Handle object) { - if (Dart_IsUnhandledExceptionError(object)) { + if (::Dart_IsUnhandledExceptionError(object)) { DARTSCOPE(Thread::Current()); const UnhandledException& error = UnhandledException::Cast(Object::Handle(Z, Api::UnwrapHandle(object)));