From 3fec7d2017dbf3cbb218d595807cffd6ee8d2bf1 Mon Sep 17 00:00:00 2001 From: Ryan Macnak Date: Tue, 12 Jul 2016 11:05:01 -0700 Subject: [PATCH] Fix debug and release builds. Review URL: https://codereview.chromium.org/2139403002 . --- runtime/lib/vmservice.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/runtime/lib/vmservice.cc b/runtime/lib/vmservice.cc index 40070d9394d..e7379771640 100644 --- a/runtime/lib/vmservice.cc +++ b/runtime/lib/vmservice.cc @@ -486,9 +486,8 @@ DEFINE_NATIVE_ENTRY(VMService_spawnUriNotify, 2) { spawn_event.set_spawn_error(&String::Cast(result)); Service::HandleEvent(&spawn_event); } -#else - return Object::null(); #endif + return Object::null(); } } // namespace dart