diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-09-16 19:28:16 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-09-16 19:28:16 +0300 |
commit | cd24ed1c6c5aab358b4f18d262bd4c00c0ebfe96 (patch) | |
tree | fdda7e2c3d93b35771f6eb79c22dce9301082f19 /src/resources/spritedef.cpp | |
parent | f8fc3380197c078a6dcff02351d835c3022411e1 (diff) | |
download | plus-cd24ed1c6c5aab358b4f18d262bd4c00c0ebfe96.tar.gz plus-cd24ed1c6c5aab358b4f18d262bd4c00c0ebfe96.tar.bz2 plus-cd24ed1c6c5aab358b4f18d262bd4c00c0ebfe96.tar.xz plus-cd24ed1c6c5aab358b4f18d262bd4c00c0ebfe96.zip |
Add const to variables with type size_t.
Diffstat (limited to 'src/resources/spritedef.cpp')
-rw-r--r-- | src/resources/spritedef.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/resources/spritedef.cpp b/src/resources/spritedef.cpp index f54a332a7..9e8e2cc90 100644 --- a/src/resources/spritedef.cpp +++ b/src/resources/spritedef.cpp @@ -76,7 +76,7 @@ unsigned SpriteDef::findNumber(const unsigned num) const SpriteDef *SpriteDef::load(const std::string &animationFile, const int variant) { - size_t pos = animationFile.find('|'); + const size_t pos = animationFile.find('|'); std::string palettes; if (pos != std::string::npos) palettes = animationFile.substr(pos + 1); @@ -334,7 +334,7 @@ void SpriteDef::loadAnimation(const XmlNodePtr animationNode, it != it_end; ++ it) { std::string str = *it; - size_t idx = str.find("-"); + const size_t idx = str.find("-"); if (str == "p") { animation->addPause(delay, rand); |