[vm] Fix Fuchsia's Platform::Save/RestoreConsoleConfiguration.

Broken in c9700040c3.

Change-Id: If85a3d29b7b5eb570c689858d5593dbcbf36026e
Reviewed-on: https://dart-review.googlesource.com/40473
Reviewed-by: Zach Anderson <zra@google.com>
This commit is contained in:
Ryan Macnak 2018-02-10 00:35:48 +00:00
parent 1f70b7ad37
commit 365f7b5a8b

View file

@ -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