Skip to content

Commit

Permalink
[vm] Fix Fuchsia's Platform::Save/RestoreConsoleConfiguration.
Browse files Browse the repository at this point in the history
Broken in c970004.

Change-Id: If85a3d29b7b5eb570c689858d5593dbcbf36026e
Reviewed-on: https://dart-review.googlesource.com/40473
Reviewed-by: Zach Anderson <zra@google.com>
  • Loading branch information
rmacnak-google committed Feb 10, 2018
1 parent 1f70b7a commit 365f7b5
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions runtime/bin/platform_fuchsia.cc
Original file line number Diff line number Diff line change
Expand Up @@ -150,14 +150,12 @@ void Platform::Exit(int exit_code) {
exit(exit_code);
}

bool Platform::SaveConsoleConfiguration() {
void Platform::SaveConsoleConfiguration() {
UNIMPLEMENTED();
return false;
}

bool Platform::RestoreConsoleConfiguration() {
void Platform::RestoreConsoleConfiguration() {
UNIMPLEMENTED();
return false;
}

} // namespace bin
Expand Down

0 comments on commit 365f7b5

Please sign in to comment.