diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-12-12 20:26:59 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-12-12 20:26:59 +0300 |
commit | bebb71a3dfadb2b94ba46c0c66f0d40d6ef75e43 (patch) | |
tree | 4d631106f76ba8a052dc2ef8b23b8a968040db82 /src/being/being.h | |
parent | 67638eeec5267977940dce29c5a94ce4d093ed69 (diff) | |
download | manaplus-bebb71a3dfadb2b94ba46c0c66f0d40d6ef75e43.tar.gz manaplus-bebb71a3dfadb2b94ba46c0c66f0d40d6ef75e43.tar.bz2 manaplus-bebb71a3dfadb2b94ba46c0c66f0d40d6ef75e43.tar.xz manaplus-bebb71a3dfadb2b94ba46c0c66f0d40d6ef75e43.zip |
Add noexcept in some files.
Diffstat (limited to 'src/being/being.h')
-rw-r--r-- | src/being/being.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/being/being.h b/src/being/being.h index 581386d3e..e1f97a08b 100644 --- a/src/being/being.h +++ b/src/being/being.h @@ -142,13 +142,13 @@ class Being notfinal : public ActorSprite, const int dstY) restrict2; void setCachedDestination(const int dstX, - const int dstY) restrict2 + const int dstY) restrict2 noexcept2 { mCachedX = dstX; mCachedY = dstY; } - int getCachedX() const A_WARN_UNUSED + int getCachedX() const noexcept2 A_WARN_UNUSED { return mCachedX; } - int getCachedY() const A_WARN_UNUSED + int getCachedY() const noexcept2 A_WARN_UNUSED { return mCachedY; } /** |