Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions core/app.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,8 @@ namespace MR
const char* argtype_description (ArgType type)
{
switch (type) {
case Boolean:
return ("boolean");
case Integer:
return ("integer");
case Float:
Expand Down Expand Up @@ -503,6 +505,9 @@ namespace MR
case Undefined:
assert (0);
break;
case Boolean:
stream << "BOOL";
break;
case Integer:
stream << "INT " << limits.i.min << " " << limits.i.max;
break;
Expand Down