Remove constexpr from non-constexpr function.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Deukhoofd 2020-07-04 15:04:31 +02:00
parent d3aacee0ef
commit 25772e7d5a
Signed by: Deukhoofd
GPG Key ID: ADF2E9256009EDCE
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ namespace ArbUt {
return *this;
}
[[nodiscard]] inline constexpr const char* c_str() const noexcept override { return _str->GetValue(); }
[[nodiscard]] inline const char* c_str() const noexcept override { return _str->GetValue(); }
[[nodiscard]] inline std::string_view std_str() const noexcept override { return _str->GetValue(); }
inline constexpr bool operator==(const std::string_view& rhs) const noexcept override {