| Index: runtime/bin/utils_fuchsia.cc
|
| diff --git a/runtime/bin/utils_fuchsia.cc b/runtime/bin/utils_fuchsia.cc
|
| index 79a1fbae6dc50b87ab3655fd848fdb60717fd009..2425e49aa09a60f1487e29829e6d61bbfca4c2d0 100644
|
| --- a/runtime/bin/utils_fuchsia.cc
|
| +++ b/runtime/bin/utils_fuchsia.cc
|
| @@ -40,29 +40,33 @@ void OSError::SetCodeAndMessage(SubSystem sub_system, int code) {
|
| }
|
|
|
|
|
| -const char* StringUtils::ConsoleStringToUtf8(
|
| - const char* str, intptr_t len, intptr_t* result_len) {
|
| +const char* StringUtils::ConsoleStringToUtf8(const char* str,
|
| + intptr_t len,
|
| + intptr_t* result_len) {
|
| UNIMPLEMENTED();
|
| return NULL;
|
| }
|
|
|
|
|
| -const char* StringUtils::Utf8ToConsoleString(
|
| - const char* utf8, intptr_t len, intptr_t* result_len) {
|
| +const char* StringUtils::Utf8ToConsoleString(const char* utf8,
|
| + intptr_t len,
|
| + intptr_t* result_len) {
|
| UNIMPLEMENTED();
|
| return NULL;
|
| }
|
|
|
|
|
| -char* StringUtils::ConsoleStringToUtf8(
|
| - char* str, intptr_t len, intptr_t* result_len) {
|
| +char* StringUtils::ConsoleStringToUtf8(char* str,
|
| + intptr_t len,
|
| + intptr_t* result_len) {
|
| UNIMPLEMENTED();
|
| return NULL;
|
| }
|
|
|
|
|
| -char* StringUtils::Utf8ToConsoleString(
|
| - char* utf8, intptr_t len, intptr_t* result_len) {
|
| +char* StringUtils::Utf8ToConsoleString(char* utf8,
|
| + intptr_t len,
|
| + intptr_t* result_len) {
|
| UNIMPLEMENTED();
|
| return NULL;
|
| }
|
| @@ -78,8 +82,7 @@ bool ShellUtils::GetUtf8Argv(int argc, char** argv) {
|
| }
|
|
|
|
|
| -void TimerUtils::InitOnce() {
|
| -}
|
| +void TimerUtils::InitOnce() {}
|
|
|
|
|
| int64_t TimerUtils::GetCurrentMonotonicMillis() {
|
| @@ -94,8 +97,8 @@ int64_t TimerUtils::GetCurrentMonotonicMicros() {
|
|
|
|
|
| void TimerUtils::Sleep(int64_t millis) {
|
| - mx_nanosleep(
|
| - millis * kMicrosecondsPerMillisecond * kNanosecondsPerMicrosecond);
|
| + mx_nanosleep(millis * kMicrosecondsPerMillisecond *
|
| + kNanosecondsPerMicrosecond);
|
| }
|
|
|
| } // namespace bin
|
|
|