12 lines
166 B
C++
12 lines
166 B
C++
#include <BAN/String.h>
|
|
#include <BAN/StringView.h>
|
|
|
|
namespace BAN
|
|
{
|
|
|
|
StringView::StringView(const String& other)
|
|
: StringView(other.data(), other.size())
|
|
{ }
|
|
|
|
}
|