Fix missed enum in switch (#1864)

This commit is contained in:
Russel Waters 2019-03-26 09:45:58 -04:00 committed by GitHub
commit 5d175d1757
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -389,6 +389,9 @@ std::string nano::stat::detail_to_string (uint32_t key)
case nano::stat::detail::bulk_push:
res = "bulk_push";
break;
case nano::stat::detail::error_socket_close:
res = "error_socket_close";
break;
case nano::stat::detail::change:
res = "change";
break;