fix: str() => cstr() in cstringstream
This commit is contained in:
@@ -76,6 +76,6 @@ kcp::cstringstream& kcp::cstringstream::operator<<(base nb)
|
|||||||
current_base = nb;
|
current_base = nb;
|
||||||
}
|
}
|
||||||
|
|
||||||
const char* kcp::cstringstream::str() {
|
const char* kcp::cstringstream::cstr() {
|
||||||
return this->string;
|
return this->string;
|
||||||
}
|
}
|
||||||
@@ -38,6 +38,6 @@ namespace kcp {
|
|||||||
|
|
||||||
cstringstream& operator<<(base nb);
|
cstringstream& operator<<(base nb);
|
||||||
|
|
||||||
const char* str();
|
const char* cstr();
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
Reference in New Issue
Block a user