diff options
| author | Per Larsson <[email protected]> | 2021-12-07 16:22:56 +0100 |
|---|---|---|
| committer | Per Larsson <[email protected]> | 2021-12-07 16:22:56 +0100 |
| commit | 431c3f739b44f84470b54c57a00f89485caed901 (patch) | |
| tree | 997d9a154790786ffa5d24d4aec46972c8fb099f /zencore/include | |
| parent | Added support for time based eviction policy in structured cache. (diff) | |
| download | zen-431c3f739b44f84470b54c57a00f89485caed901.tar.xz zen-431c3f739b44f84470b54c57a00f89485caed901.zip | |
First pass of z$ garbage collection.
Diffstat (limited to 'zencore/include')
| -rw-r--r-- | zencore/include/zencore/string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zencore/include/zencore/string.h b/zencore/include/zencore/string.h index a5ab25068..031ea2c1d 100644 --- a/zencore/include/zencore/string.h +++ b/zencore/include/zencore/string.h @@ -422,7 +422,7 @@ public: inline operator std::wstring_view() const { return std::wstring_view{Data(), Size()}; } inline std::wstring_view ToView() const { return std::wstring_view{Data(), Size()}; } - inline std::wstring toString() const { return std::wstring{Data(), Size()}; } + inline std::wstring ToString() const { return std::wstring{Data(), Size()}; } inline StringBuilderImpl& operator<<(const std::u16string_view str) { return Append((const wchar_t*)str.data(), str.size()); } inline StringBuilderImpl& operator<<(const wchar_t* str) { return Append(str); } |