MCPcopy Create free account
hub / github.com/ChaiScript/ChaiScript / operator =

Method operator =

unittests/catch.hpp:427–433  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

425 }
426
427 auto operator = ( StringRef const &other ) noexcept -> StringRef& {
428 delete[] m_data;
429 m_data = nullptr;
430 m_start = other.m_start;
431 m_size = other.m_size;
432 return *this;
433 }
434
435 operator std::string() const;
436

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected