|
From: Yoda-JM <yo...@us...> - 2010-05-17 21:49:51
|
Module: performous
Branch: master
Commit: ef74a3721333bf49ddf4985a8db0cfc5c26c0ed1
Author: Vincent Le Ligeour <yo...@us...>
Date: Mon May 17 23:49:35 2010 +0200
Removed compile warning
---
game/i18n.hh | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/game/i18n.hh b/game/i18n.hh
index 941230e..5f7272c 100644
--- a/game/i18n.hh
+++ b/game/i18n.hh
@@ -22,6 +22,8 @@ class Gettext {
bindtextdomain (package, getLocaleDir().string().c_str());
textdomain (package);
bind_textdomain_codeset (package, "UTF-8");
+#else
+ (void)package;
#endif
};
static bool enabled() {
|