1
0
mirror of https://github.com/OpenTTD/OpenTTD synced 2026-01-17 09:22:42 +01:00

Codefix: Codestyle consistency fixes. (#14008)

This commit is contained in:
Peter Nelson
2025-04-15 21:57:13 +01:00
committed by GitHub
parent 03ed59a004
commit fa0814e257
4 changed files with 9 additions and 12 deletions

View File

@@ -53,7 +53,7 @@ public:
/**
* Append integer 'value' in given number 'base'.
*/
template<class T>
template <class T>
void PutIntegerBase(T value, int base)
{
std::array<char, 32> buf;
@@ -67,8 +67,7 @@ public:
/**
* Compose data into a growing std::string.
*/
class StringBuilder final : public BaseStringBuilder
{
class StringBuilder final : public BaseStringBuilder {
std::string *dest;
public:
/**