diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-12-17 18:51:50 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-12-17 18:51:50 +0300 |
commit | b013dccdcde658b8e73818ba93988a53d4e1d7ac (patch) | |
tree | 9963d02b565fa82cd4e3e1b20f2388aaa15d7e30 /src/being | |
parent | d481dcd1baefb5a067069f592cfcb8f5150b8594 (diff) | |
download | plus-b013dccdcde658b8e73818ba93988a53d4e1d7ac.tar.gz plus-b013dccdcde658b8e73818ba93988a53d4e1d7ac.tar.bz2 plus-b013dccdcde658b8e73818ba93988a53d4e1d7ac.tar.xz plus-b013dccdcde658b8e73818ba93988a53d4e1d7ac.zip |
add restrict into being.
Diffstat (limited to 'src/being')
-rw-r--r-- | src/being/being.cpp | 4 | ||||
-rw-r--r-- | src/being/being.h | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/src/being/being.cpp b/src/being/being.cpp index dab5227ba..ba2108402 100644 --- a/src/being/being.cpp +++ b/src/being/being.cpp @@ -2856,8 +2856,8 @@ std::string Being::loadComment(const std::string &name, const int type) return ""; } -void Being::saveComment(const std::string &name, - const std::string &comment, const int type) +void Being::saveComment(const std::string &restrict name, + const std::string &restrict comment, const int type) { std::string dir; switch (type) diff --git a/src/being/being.h b/src/being/being.h index 9d595fa6f..08ac81e9e 100644 --- a/src/being/being.h +++ b/src/being/being.h @@ -803,8 +803,9 @@ class Being : public ActorSprite, public ConfigListener static std::string loadComment(const std::string &name, const int type) A_WARN_UNUSED; - static void saveComment(const std::string &name, - const std::string &comment, const int type); + static void saveComment(const std::string &restrict name, + const std::string &restrict comment, + const int type); bool isAdvanced() const A_WARN_UNUSED { return mAdvanced; } |