Remove constexpr from StatusCode default constructor for coverity scans
Coverity claims:
error #2443: defaulted default constructor cannot be constexpr
because the corresponding implicitly declared default constructor
would not be constexpr
constexpr StatusCode() = default;
This is most likely a bug in the C++14 support and has been reported upstream.
Edited by Frank Winklmeier