mirror of https://gitee.com/bigwinds/arangodb
compilers shouldn't complain about that
This commit is contained in:
parent
5b171e5cf5
commit
c789c16b82
|
@ -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";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue