[ox] Rename CRString to StringCR
All checks were successful
Build / build (push) Successful in 2m30s

This commit is contained in:
Gary Talent 2024-09-28 17:46:45 -05:00
parent a1b5b56553
commit 1a9f0d49e7
2 changed files with 2 additions and 2 deletions

View File

@ -652,7 +652,7 @@ class ModelObject {
}
[[nodiscard]]
constexpr CRString typeName() const noexcept {
constexpr StringCR typeName() const noexcept {
return m_type->typeName;
}

View File

@ -539,7 +539,7 @@ constexpr void BasicString<SmallStringSize_v>::set(const char8_t *str) noexcept
extern template class BasicString<8>;
using String = BasicString<8>;
using CRString = String const&;
using StringCR = String const&;
[[nodiscard]]