aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Dobell <benjamin.dobell+git@glassechidna.com.au>2012-10-02 22:18:47 +1000
committerBenjamin Dobell <benjamin.dobell+git@glassechidna.com.au>2012-10-02 22:18:47 +1000
commit28269910f27f3f00406f3d5070ca17992a2a30d3 (patch)
tree06595e6be25a2a081fa8e3dacf4d2a08bc61a81e
parent6cd6b35c737e0e4042a8fd79af1decc9f10ed84b (diff)
downloadexternal_heimdall-28269910f27f3f00406f3d5070ca17992a2a30d3.zip
external_heimdall-28269910f27f3f00406f3d5070ca17992a2a30d3.tar.gz
external_heimdall-28269910f27f3f00406f3d5070ca17992a2a30d3.tar.bz2
Added fixed for g++ parsing issue on OS X.
-rw-r--r--heimdall/source/Arguments.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/heimdall/source/Arguments.h b/heimdall/source/Arguments.h
index 7294e70..55c196e 100644
--- a/heimdall/source/Arguments.h
+++ b/heimdall/source/Arguments.h
@@ -132,8 +132,9 @@ namespace Heimdall
public:
- Arguments(const map<string, ArgumentType>& argumentTypes, const map<string, string>& shortArgumentAliases = map<string, string>(),
- const map<string, string> argumentAliases = map<string, string>());
+ Arguments(const map<string, ArgumentType>& argumentTypes, const map<string, string>& shortArgumentAliases = (map<string, string>()),
+ const map<string, string> argumentAliases = (map<string, string>()));
+
~Arguments();
// argi is the index of the first argument to parse.