mirror of
https://github.com/OpenMW/openmw.git
synced 2025-03-03 07:09:40 +00:00
Use string_view
This commit is contained in:
parent
751e8cf76b
commit
c6470f33d3
1 changed files with 3 additions and 2 deletions
|
@ -3,6 +3,7 @@
|
|||
|
||||
#include <cstring>
|
||||
#include <string>
|
||||
#include <string_view>
|
||||
#include <tuple>
|
||||
|
||||
class Utf8Stream
|
||||
|
@ -30,8 +31,8 @@ public:
|
|||
{
|
||||
}
|
||||
|
||||
Utf8Stream (const std::string& str) :
|
||||
Utf8Stream (reinterpret_cast<Point>(str.c_str()), reinterpret_cast<Point>(str.c_str() + str.size()))
|
||||
Utf8Stream (std::string_view str) :
|
||||
Utf8Stream (reinterpret_cast<Point>(str.data()), reinterpret_cast<Point>(str.data() + str.size()))
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue