Commit 88321d60 authored by Raphael Kubo da Costa's avatar Raphael Kubo da Costa Committed by Commit Bot

message_pump: Do not use contractions in #error messages

This prevents GCC from spamming the build with warnings such as

    ../../base/message_loop/message_pump_for_io.h:39:22: warning: missing terminating ' character
     #error Platform doesn't define MessagePumpForIO

Change-Id: Ice62f39141a613c2ab4a56c031826c43292f287f
Reviewed-on: https://chromium-review.googlesource.com/997632
Commit-Queue: Gabriel Charette <gab@chromium.org>
Reviewed-by: default avatarLei Zhang <thestig@chromium.org>
Reviewed-by: default avatarGabriel Charette <gab@chromium.org>
Cr-Commit-Position: refs/heads/master@{#548424}
parent d7eb636f
......@@ -36,7 +36,7 @@ using MessagePumpForIO = MessagePumpFuchsia;
#elif defined(OS_POSIX)
using MessagePumpForIO = MessagePumpLibevent;
#else
#error Platform doesn't define MessagePumpForIO
#error Platform does not define MessagePumpForIO
#endif
} // namespace base
......
......@@ -47,7 +47,7 @@ using MessagePumpForUI = MessagePumpLibevent;
#elif defined(OS_FUCHSIA)
using MessagePumpForUI = MessagePumpFuchsia;
#else
#error Platform doesn't define MessagePumpForUI
#error Platform does not define MessagePumpForUI
#endif
} // namespace base
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment