1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-12-04 19:18:21 +00:00

Adjust more dangling indentation changes.

This commit is contained in:
Thomas Harte
2024-12-04 22:29:08 -05:00
parent 3d2eefc7e7
commit ce5aae3f7d
45 changed files with 5530 additions and 5528 deletions

View File

@@ -14,15 +14,15 @@
namespace Utility {
class StringSerialiser {
public:
StringSerialiser(const std::string &source, bool use_linefeed_only = false);
public:
StringSerialiser(const std::string &source, bool use_linefeed_only = false);
uint8_t head();
bool advance();
uint8_t head();
bool advance();
private:
std::string input_string_;
std::size_t input_string_pointer_ = 0;
private:
std::string input_string_;
std::size_t input_string_pointer_ = 0;
};
}