mirror of
https://github.com/catchorg/Catch2.git
synced 2024-12-23 11:43:29 +01:00
Move all stringref function bodies out of line
This commit is contained in:
parent
a40add3153
commit
5ebbec7dab
@ -125,6 +125,18 @@ namespace Catch {
|
|||||||
return !operator==( other );
|
return !operator==( other );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
auto StringRef::operator[](size_type index) const noexcept -> char {
|
||||||
|
return m_start[index];
|
||||||
|
}
|
||||||
|
|
||||||
|
auto StringRef::empty() const noexcept -> bool {
|
||||||
|
return m_size == 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
auto StringRef::size() const noexcept -> size_type {
|
||||||
|
return m_size;
|
||||||
|
}
|
||||||
|
|
||||||
auto operator + ( StringRef const& lhs, StringRef const& rhs ) -> String {
|
auto operator + ( StringRef const& lhs, StringRef const& rhs ) -> String {
|
||||||
StringBuilder buf;
|
StringBuilder buf;
|
||||||
buf.reserve( lhs.size() + rhs.size() );
|
buf.reserve( lhs.size() + rhs.size() );
|
||||||
|
@ -51,17 +51,11 @@ namespace Catch {
|
|||||||
auto operator == ( StringRef const& other ) const noexcept -> bool;
|
auto operator == ( StringRef const& other ) const noexcept -> bool;
|
||||||
auto operator != ( StringRef const& other ) const noexcept -> bool;
|
auto operator != ( StringRef const& other ) const noexcept -> bool;
|
||||||
|
|
||||||
auto operator[] ( size_type index ) const noexcept -> char {
|
auto operator[] ( size_type index ) const noexcept -> char;
|
||||||
return m_start[index];
|
|
||||||
}
|
|
||||||
|
|
||||||
public: // named queries
|
public: // named queries
|
||||||
auto empty() const noexcept -> bool {
|
auto empty() const noexcept -> bool;
|
||||||
return m_size == 0;
|
auto size() const noexcept -> size_type;
|
||||||
}
|
|
||||||
auto size() const noexcept -> size_type {
|
|
||||||
return m_size;
|
|
||||||
}
|
|
||||||
auto c_str() const -> char const*;
|
auto c_str() const -> char const*;
|
||||||
|
|
||||||
public: // substrings and searches
|
public: // substrings and searches
|
||||||
|
Loading…
Reference in New Issue
Block a user