diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-10-30 13:05:34 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-10-30 13:11:34 +0300 |
commit | 0cff44ef5c1383a638c30cc9f5f8c81b6b4318f9 (patch) | |
tree | 077c2ff59d6656096aa0acaaf4dd6bf4fb7867f7 /src/guichan/include/guichan/mouseinput.hpp | |
parent | 6b1684d33dec02eb6308bb3d8d3707f4d5252ba5 (diff) | |
download | plus-0cff44ef5c1383a638c30cc9f5f8c81b6b4318f9.tar.gz plus-0cff44ef5c1383a638c30cc9f5f8c81b6b4318f9.tar.bz2 plus-0cff44ef5c1383a638c30cc9f5f8c81b6b4318f9.tar.xz plus-0cff44ef5c1383a638c30cc9f5f8c81b6b4318f9.zip |
Add unused warnings to other files.
Diffstat (limited to 'src/guichan/include/guichan/mouseinput.hpp')
-rw-r--r-- | src/guichan/include/guichan/mouseinput.hpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/guichan/include/guichan/mouseinput.hpp b/src/guichan/include/guichan/mouseinput.hpp index b2fc9d36a..ab286cac1 100644 --- a/src/guichan/include/guichan/mouseinput.hpp +++ b/src/guichan/include/guichan/mouseinput.hpp @@ -110,7 +110,7 @@ namespace gcn * @see setType * @since 0.1.0 */ - unsigned int getType() const; + unsigned int getType() const A_WARN_UNUSED; /** * Sets the button pressed. @@ -130,7 +130,7 @@ namespace gcn * @see setButton * @since 0.1.0 */ - unsigned int getButton() const; + unsigned int getButton() const A_WARN_UNUSED; /** * Sets the timestamp for the mouse input. @@ -150,7 +150,7 @@ namespace gcn * @see setTimeStamp * @since 0.1.0 */ - int getTimeStamp() const; + int getTimeStamp() const A_WARN_UNUSED; /** * Sets the x coordinate of the mouse input. @@ -168,7 +168,7 @@ namespace gcn * @see setX * @since 0.6.0 */ - int getX() const; + int getX() const A_WARN_UNUSED; /** * Sets the y coordinate of the mouse input. @@ -186,7 +186,7 @@ namespace gcn * @see setY * @since 0.6.0 */ - int getY() const; + int getY() const A_WARN_UNUSED; /** * Mouse input event types. This enum partially corresponds |