mirror of
https://github.com/mcneel/opennurbs.git
synced 2026-03-18 07:26:06 +08:00
Sync changes from upstream repository
Co-authored-by: Andrew Le Bihan <andy@mcneel.com> Co-authored-by: Dale Fugier <dale@mcneel.com> Co-authored-by: Dale Lear <dalelear@mcneel.com> Co-authored-by: Greg Arden <greg@mcneel.com> Co-authored-by: Jussi <jussi@mcneel.com> Co-authored-by: Lowell <lowell@mcneel.com> Co-authored-by: Rajaa Issa <rajaa@mcneel.com> Co-authored-by: Steve Baer <steve@mcneel.com> Co-authored-by: alain <alain@mcneel.com> Co-authored-by: chuck <chuck@mcneel.com> Co-authored-by: piac <giulio@mcneel.com>
This commit is contained in:
@@ -853,6 +853,15 @@ const char* ON_String::Array() const
|
||||
return ( Header()->string_capacity > 0 ) ? m_s : 0;
|
||||
}
|
||||
|
||||
const ON_String ON_String::Duplicate() const
|
||||
{
|
||||
if (Length() <= 0)
|
||||
return ON_String::EmptyString;
|
||||
ON_String s = *this;
|
||||
s.CopyArray();
|
||||
return s;
|
||||
}
|
||||
|
||||
/*
|
||||
Returns:
|
||||
Total number of bytes of memory used by this class.
|
||||
|
||||
Reference in New Issue
Block a user