Merge pull request #157 from kou/add-missing-end-namespace-comment

Add missing namespace end comments
This commit is contained in:
Daniel Lemire 2022-12-02 09:49:33 -05:00 committed by GitHub
commit 11223155ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -58,6 +58,6 @@ template<typename T>
from_chars_result from_chars_advanced(const char *first, const char *last,
T &value, parse_options options) noexcept;
}
} // namespace fast_float
#include "parse_number.h"
#endif // FASTFLOAT_FAST_FLOAT_H

View File

@ -694,6 +694,6 @@ const uint64_t powers_template<unused>::power_of_five_128[number_of_entries] = {
0x8e679c2f5e44ff8f,0x570f09eaa7ea7648,};
using powers = powers_template<>;
}
} // namespace fast_float
#endif