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/resources/map/mapitem.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/resources/map/mapitem.h') diff --git a/src/resources/map/mapitem.h b/src/resources/map/mapitem.h index 0f9499d24..949eae9ea 100644 --- a/src/resources/map/mapitem.h +++ b/src/resources/map/mapitem.h @@ -46,29 +46,29 @@ class MapItem final ~MapItem(); - int getType() const A_WARN_UNUSED + int getType() const noexcept2 A_WARN_UNUSED { return mType; } void setType(const int type); void setPos(const int x, const int y); - int getX() const A_WARN_UNUSED + int getX() const noexcept2 A_WARN_UNUSED { return mX; } - int getY() const A_WARN_UNUSED + int getY() const noexcept2 A_WARN_UNUSED { return mY; } - const std::string &getComment() const A_WARN_UNUSED + const std::string &getComment() const noexcept2 A_WARN_UNUSED { return mComment; } - void setComment(const std::string &comment) + void setComment(const std::string &comment) noexcept2 { mComment = comment; } - const std::string &getName() const A_WARN_UNUSED + const std::string &getName() const noexcept2 A_WARN_UNUSED { return mName; } - void setName(const std::string &name) + void setName(const std::string &name) noexcept2 { mName = name; } void draw(Graphics *const graphics, -- cgit v1.2.3-60-g2f50