Skip to content

Commit

Permalink
Added fixed for g++ parsing issue on OS X.
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin-Dobell committed Oct 2, 2012
1 parent 6cd6b35 commit 2826991
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions heimdall/source/Arguments.h
Expand Up @@ -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.
Expand Down

0 comments on commit 2826991

Please sign in to comment.