mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
Compiler performance enhancements
This commit is contained in:
parent
3736281ff7
commit
d623c21495
22 changed files with 679 additions and 291 deletions
|
@ -283,6 +283,11 @@ void StringImpl::Reference(const StringView& strView)
|
|||
Reference(strView.mPtr, strView.mLength);
|
||||
}
|
||||
|
||||
void StringImpl::Reference(const StringImpl& str)
|
||||
{
|
||||
Reference(str.GetPtr(), str.mLength);
|
||||
}
|
||||
|
||||
String StringImpl::CreateReference(const StringView& strView)
|
||||
{
|
||||
String str;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue