From bebb71a3dfadb2b94ba46c0c66f0d40d6ef75e43 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 12 Dec 2016 20:26:59 +0300 Subject: Add noexcept in some files. --- src/net/messagein.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/net/messagein.h') diff --git a/src/net/messagein.h b/src/net/messagein.h index 29b6ef7fb..fb46e9059 100644 --- a/src/net/messagein.h +++ b/src/net/messagein.h @@ -47,19 +47,19 @@ class MessageIn notfinal /** * Returns the message ID. */ - int getId() const A_WARN_UNUSED + int getId() const noexcept2 A_WARN_UNUSED { return mId; } /** * Returns the message length. */ - unsigned int getLength() const A_WARN_UNUSED + unsigned int getLength() const noexcept2 A_WARN_UNUSED { return mLength; } /** * Returns the length of unread data. */ - unsigned int getUnreadLength() const A_WARN_UNUSED + unsigned int getUnreadLength() const noexcept2 A_WARN_UNUSED { return mLength > mPos ? mLength - mPos : 0; } /**< Reads a byte. */ @@ -124,7 +124,7 @@ class MessageIn notfinal static uint8_t fromServerDirection(const uint8_t serverDir) A_WARN_UNUSED; - unsigned int getVersion() const A_WARN_UNUSED + unsigned int getVersion() const noexcept2 A_WARN_UNUSED { return mVersion; } protected: -- cgit v1.2.3-60-g2f50