1
0
Fork 0

compilers shouldn't complain about that

This commit is contained in:
Jan Steemann 2014-03-27 09:43:01 +01:00
parent 5b171e5cf5
commit c789c16b82
1 changed files with 3 additions and 2 deletions

View File

@ -231,8 +231,6 @@ namespace triagens {
static std::string statusText (StatusType status) {
switch (status) {
case StatusType::UNKNOWN:
return "unknown";
case StatusType::EMPTY:
return "empty";
case StatusType::OPEN:
@ -245,6 +243,9 @@ namespace triagens {
return "collection-requested";
case StatusType::COLLECTED:
return "collected";
case StatusType::UNKNOWN:
default:
return "unknown";
}
}