mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-12-14 12:09:36 +00:00
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:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user