Remove constexpr from non-constexpr function.
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
d3aacee0ef
commit
25772e7d5a
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue