From 422afa2eadb57eb50bd763d4cc3f790f63fc6fc2 Mon Sep 17 00:00:00 2001 From: Ryan Macnak Date: Fri, 13 Jan 2017 10:59:08 -0800 Subject: [PATCH] Explicitly mark empty snapshots as extern. TBR=asiva@google.com Review-Url: https://codereview.chromium.org/2631763002 . --- runtime/bin/snapshot_empty.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/bin/snapshot_empty.cc b/runtime/bin/snapshot_empty.cc index 6fc5b9f67bd..2f122986e48 100644 --- a/runtime/bin/snapshot_empty.cc +++ b/runtime/bin/snapshot_empty.cc @@ -16,8 +16,8 @@ typedef unsigned __int8 uint8_t; namespace dart { namespace bin { -const uint8_t* vm_isolate_snapshot_buffer = NULL; -const uint8_t* const core_isolate_snapshot_buffer = NULL; +extern const uint8_t* vm_isolate_snapshot_buffer = NULL; +extern const uint8_t* const core_isolate_snapshot_buffer = NULL; } // namespace bin } // namespace dart