1
0
Fork 0

Fix warning

This commit is contained in:
Andreas Streichardt 2016-04-05 13:40:24 +02:00
parent 529199a9c3
commit 0dd6e65310
1 changed files with 6 additions and 0 deletions

View File

@ -127,6 +127,8 @@ struct AgencyOperationType {
return "push";
case AgencyValueOperationType::PREPEND:
return "prepend";
default:
return "unknown_operation_type";
}
break;
case SIMPLE:
@ -141,7 +143,11 @@ struct AgencyOperationType {
return "pop";
case AgencySimpleOperationType::SHIFT:
return "shift";
default:
return "unknown_operation_type";
}
default:
return "unknown_operation_type";
}
}
};