mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 04:41:05 +08:00
Use std::
namespace
This commit is contained in:
parent
b583eaf160
commit
ad03953795
@ -166,7 +166,7 @@ String::String(const char* ansiString, const std::locale& locale)
|
|||||||
{
|
{
|
||||||
if (ansiString)
|
if (ansiString)
|
||||||
{
|
{
|
||||||
const std::size_t length = strlen(ansiString);
|
const std::size_t length = std::strlen(ansiString);
|
||||||
if (length > 0)
|
if (length > 0)
|
||||||
{
|
{
|
||||||
m_string.reserve(length + 1);
|
m_string.reserve(length + 1);
|
||||||
|
Loading…
Reference in New Issue
Block a user