apply clang-format to tool sources

This commit is contained in:
Henny022p
2021-11-23 09:31:09 +01:00
parent 5f41468ba8
commit dee773da4a
54 changed files with 5581 additions and 6826 deletions
+7 -8
View File
@@ -25,15 +25,14 @@
#include <string>
#include "preproc.h"
class StringParser
{
public:
StringParser(char* buffer, long size) : m_buffer(buffer), m_size(size), m_pos(0) {}
int ParseString(long srcPos, unsigned char* dest, int &destLength);
class StringParser {
public:
StringParser(char* buffer, long size) : m_buffer(buffer), m_size(size), m_pos(0) {
}
int ParseString(long srcPos, unsigned char* dest, int& destLength);
private:
struct Integer
{
private:
struct Integer {
std::uint32_t value;
int size;
};