Fix build on clang due to -Wmismatched-tags

http://hydra.nixos.org/build/33073389
This commit is contained in:
Eelco Dolstra 2016-03-14 12:37:30 +01:00
parent e69c48dc43
commit dc4a71aae5

View file

@ -29,8 +29,9 @@ typedef std::map<std::string, ref<Command>> Commands;
/* An argument parser that supports multiple subcommands,
i.e. <command> <subcommand>. */
struct MultiCommand : virtual Args
class MultiCommand : virtual Args
{
public:
Commands commands;
std::shared_ptr<Command> command;