Skip to content

Commit

Permalink
sky_snapshot: fix the types of Dart snapshot buffer symbols (flutter#…
Browse files Browse the repository at this point in the history
…2876)

Also pick up some needed fixes to FTL and Tonic
  • Loading branch information
jason-simmons authored Aug 5, 2016
1 parent adbf037 commit 5556355
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions DEPS
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ deps = {
# and not have to specific specific hashes.

'src/lib/ftl':
Var('fuchsia_git') + '/ftl' + '@' + 'e9ebb15d179fed9467e5fb3ce6fb807cc4ad9a8b',
Var('fuchsia_git') + '/ftl' + '@' + 'be8fe290130170e78cbd3cedbf2ba580c22ced43',

'src/lib/tonic':
Var('fuchsia_git') + '/tonic' + '@' + '325db6a9d6d32351e86843e5db0dfaad5f8651bf',
Var('fuchsia_git') + '/tonic' + '@' + '4c73592aceba378355e245b797017ff4c02a9248',

'src/third_party/gtest':
Var('fuchsia_git') + '/third_party/gtest' + '@' + 'c00f82917331efbbd27124b537e4ccc915a02b72',
Expand Down
4 changes: 2 additions & 2 deletions sky/tools/sky_snapshot/main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
#include "lib/tonic/file_loader/file_loader.h"

extern "C" {
extern const uint8_t* kDartVmIsolateSnapshotBuffer;
extern const uint8_t* kDartIsolateSnapshotBuffer;
extern const uint8_t kDartVmIsolateSnapshotBuffer[];
extern const uint8_t kDartIsolateSnapshotBuffer[];
}

namespace sky_snapshot {
Expand Down

0 comments on commit 5556355

Please sign in to comment.