@@ -17,7 +17,7 @@ void Opt2::Clear() {
void Opt2::Init(int argc, char* const* argv, const char* optspec, IntRange free_args_num, const char* long_alias) {
Clear();
- Argc = argc;
+ Argc = argc;
Argv = argv;
HasErrors = false, BadPosCount = false, UnknownOption = 0, OptionMissingArg = 0;
UnknownLongOption = nullptr;
@@ -101,7 +101,7 @@ public:
inline void Append(char ch) {
if (Len_ == Pos_) {
Reserve(Len_ + 1);
- }
+ }
*(Data() + Pos_++) = ch;
}
@@ -142,7 +142,7 @@ public:
inline void Reserve(size_t len) {
if (len > Len_) {
DoReserve(len);
inline void ReserveExactNeverCallMeInSaneCode(size_t len) {
@@ -803,8 +803,8 @@ public:
inline void push_back(TCharType c) {
// TODO
append(c);
-
+
template <class T>
TBasicString& operator+=(const T& s) {
return append(s);
@@ -65,7 +65,7 @@ private:
static constexpr size_t TypedSize(const size_t size) noexcept {
return size / sizeof(T);
public:
TTempArray() = default;