diff options
author | ch.dumez@samsung.com <ch.dumez@samsung.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-10 14:38:39 +0000 |
---|---|---|
committer | ch.dumez@samsung.com <ch.dumez@samsung.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-10 14:38:39 +0000 |
commit | c86e1bb7321a49ecef778469c80cf84b9a5e13a5 (patch) | |
tree | 37f3f72c6e1ee5c3672f0819b872dbf0d98dadb1 /ipc/ipc_test_sink.h | |
parent | d0f29168ebb417be35be60269052e46386fc0b45 (diff) | |
download | chromium_src-c86e1bb7321a49ecef778469c80cf84b9a5e13a5.zip chromium_src-c86e1bb7321a49ecef778469c80cf84b9a5e13a5.tar.gz chromium_src-c86e1bb7321a49ecef778469c80cf84b9a5e13a5.tar.bz2 |
Build fix with gcc 4.8 and C++11 enabled
Build fix with gcc 4.8 and C++11 enabled. gcc was complaining because it
requires 'override' to be specified *before" __attribute__ (WARN_UNUSED_RESULT
in this case).
Review URL: https://codereview.chromium.org/322833002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@276021 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_test_sink.h')
-rw-r--r-- | ipc/ipc_test_sink.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/ipc_test_sink.h b/ipc/ipc_test_sink.h index 1ea2d0c..1a213ee1 100644 --- a/ipc/ipc_test_sink.h +++ b/ipc/ipc_test_sink.h @@ -78,7 +78,7 @@ class TestSink : public Channel { // Interface in IPC::Channel. This copies the message to the sink and then // deletes it. virtual bool Send(IPC::Message* message) OVERRIDE; - virtual bool Connect() WARN_UNUSED_RESULT OVERRIDE; + virtual bool Connect() OVERRIDE WARN_UNUSED_RESULT; virtual void Close() OVERRIDE; virtual base::ProcessId GetPeerPID() const OVERRIDE; |