aboutsummaryrefslogtreecommitdiff
path: root/src/minimacro.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2008-09-24 03:22:58 +0000
committerMike Buland <eichlan@xagasoft.com>2008-09-24 03:22:58 +0000
commit0975d66d2f06603f5e4016440b333aac88e2958a (patch)
treecd3767fb74c2475fd78bca9ff2d3ba825dd329f4 /src/minimacro.h
parent17df4c2b9616c29865b0d893cc797d4938a660a2 (diff)
downloadlibbu++-0975d66d2f06603f5e4016440b333aac88e2958a.tar.gz
libbu++-0975d66d2f06603f5e4016440b333aac88e2958a.tar.bz2
libbu++-0975d66d2f06603f5e4016440b333aac88e2958a.tar.xz
libbu++-0975d66d2f06603f5e4016440b333aac88e2958a.zip
Ok, now all the warnings are gone (except for those coming from nids, but that's
ok, nids is still in flux, they'll be gone soon).
Diffstat (limited to 'src/minimacro.h')
-rw-r--r--src/minimacro.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/minimacro.h b/src/minimacro.h
index 45a8555..e0765d3 100644
--- a/src/minimacro.h
+++ b/src/minimacro.h
@@ -103,7 +103,7 @@ namespace Bu
103 FuncToUpper(){} 103 FuncToUpper(){}
104 virtual ~FuncToUpper(){} 104 virtual ~FuncToUpper(){}
105 virtual Bu::FString call( 105 virtual Bu::FString call(
106 const Bu::FString &sIn, StrList &lsParam ) 106 const Bu::FString &sIn, StrList & )
107 { 107 {
108 Bu::FString sOut( sIn ); 108 Bu::FString sOut( sIn );
109 sOut.toUpper(); 109 sOut.toUpper();
@@ -117,7 +117,7 @@ namespace Bu
117 FuncToLower(){} 117 FuncToLower(){}
118 virtual ~FuncToLower(){} 118 virtual ~FuncToLower(){}
119 virtual Bu::FString call( 119 virtual Bu::FString call(
120 const Bu::FString &sIn, StrList &lsParam ) 120 const Bu::FString &sIn, StrList & )
121 { 121 {
122 Bu::FString sOut( sIn ); 122 Bu::FString sOut( sIn );
123 sOut.toLower(); 123 sOut.toLower();