Normalize line endings

This commit contains only the result of `git add --renormalize .`

`git show --ignore-space-change` can verify that this commit only
changes whitespace.
This commit is contained in:
Diomendius
2024-07-31 19:35:12 +12:00
parent bb7b663daf
commit 1b18a87495
822 changed files with 323794 additions and 323794 deletions

View File

@@ -3,8 +3,8 @@
#include "GpVector.h"
#include <stdint.h>
#include <stddef.h>
#include <stddef.h>
template<class TChar>
class GpString
{
@@ -28,7 +28,7 @@ private:
static const size_t kStaticSize = 32;
GpVector<TChar, kStaticSize> m_chars;
size_t m_length;
size_t m_length;
};
typedef GpString<char> GpCString;
@@ -86,7 +86,7 @@ bool GpString<TChar>::Set(const GpString<TChar> &other)
if (&other == this)
return true;
return this->Set(other.Buffer(), other.m_length);
return this->Set(other.Buffer(), other.m_length);
}
template<class TChar>
@@ -134,7 +134,7 @@ bool GpString<TChar>::Append(const GpString<TChar> &other)
m_length += other.m_length;
return true;
return true;
}
template<class TChar>