Change some class naming conventions
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
#include "StringDecoder.h"
|
||||
|
||||
FStringDecoder::FStringDecoder(std::string_view s) {
|
||||
FlxStringDecoder::FlxStringDecoder(std::string_view s) {
|
||||
Text = s.data();
|
||||
Size = s.size();
|
||||
ErrBeyondEOF = false;
|
||||
ErrStringTooLong = false;
|
||||
}
|
||||
|
||||
std::string_view FStringDecoder::read_string_view() {
|
||||
std::string_view FlxStringDecoder::read_string_view() {
|
||||
size_t length = read_length();
|
||||
if (length > Size) {
|
||||
ErrBeyondEOF = true;
|
||||
@@ -19,7 +19,7 @@ std::string_view FStringDecoder::read_string_view() {
|
||||
return result;
|
||||
}
|
||||
|
||||
void FStringDecoder::set_at_eof() {
|
||||
void FlxStringDecoder::set_at_eof() {
|
||||
Text += Size;
|
||||
Size = 0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user