diff options
author | Jared Adams <jaxad0127@gmail.com> | 2010-02-25 11:28:20 -0700 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2010-02-25 11:44:43 -0700 |
commit | d4bb7d50f6923fb89dcf050f70d94f69143749c1 (patch) | |
tree | b850f10085114a4aa4802d8c45f984e056025541 /src/party.h | |
parent | 57b7ac94b5b0fe2aca7f97d864e082cf67973614 (diff) | |
download | mana-d4bb7d50f6923fb89dcf050f70d94f69143749c1.tar.gz mana-d4bb7d50f6923fb89dcf050f70d94f69143749c1.tar.bz2 mana-d4bb7d50f6923fb89dcf050f70d94f69143749c1.tar.xz mana-d4bb7d50f6923fb89dcf050f70d94f69143749c1.zip |
Change const void to void
Reviewed-by: Thorbjørn Lindeijer
Diffstat (limited to 'src/party.h')
-rw-r--r-- | src/party.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/party.h b/src/party.h index e723cf37..d50ed7b0 100644 --- a/src/party.h +++ b/src/party.h @@ -163,7 +163,7 @@ public: bool isMember(const std::string &name) const; - const void getNames(std::vector<std::string> &names) const; + void getNames(std::vector<std::string> &names) const; static Party *getParty(int id); |