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/resources/map/tileset.h | |
parent | 67638eeec5267977940dce29c5a94ce4d093ed69 (diff) | |
download | plus-bebb71a3dfadb2b94ba46c0c66f0d40d6ef75e43.tar.gz plus-bebb71a3dfadb2b94ba46c0c66f0d40d6ef75e43.tar.bz2 plus-bebb71a3dfadb2b94ba46c0c66f0d40d6ef75e43.tar.xz plus-bebb71a3dfadb2b94ba46c0c66f0d40d6ef75e43.zip |
Add noexcept in some files.
Diffstat (limited to 'src/resources/map/tileset.h')
-rw-r--r-- | src/resources/map/tileset.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/resources/map/tileset.h b/src/resources/map/tileset.h index 93ff16c2d..a2ded3596 100644 --- a/src/resources/map/tileset.h +++ b/src/resources/map/tileset.h @@ -53,13 +53,14 @@ class Tileset final : public ImageSet /** * Returns the first gid. */ - int getFirstGid() const A_WARN_UNUSED + int getFirstGid() const noexcept2 A_WARN_UNUSED { return mFirstGid; } /** * Set tileset property. */ - void setProperties(const std::map<std::string, std::string> &props) + void setProperties(const std::map<std::string, + std::string> &props) noexcept2 { mProperties = props; } /** |