Move StringRef's impl details to anonymous namespace

This commit is contained in:
Martin Hořeňovský 2017-11-13 12:41:04 +01:00
parent d09fe4459d
commit 484eee973c

View File

@ -20,12 +20,15 @@
namespace Catch {
namespace {
auto getEmptyStringRef() -> StringRef {
static StringRef s_emptyStringRef("");
return s_emptyStringRef;
}
}
StringRef::StringRef() noexcept
: StringRef( getEmptyStringRef() )
{}