mirror of
https://github.com/fmtlib/fmt.git
synced 2025-11-28 05:09:44 +01:00
Cleanup tests
This commit is contained in:
@@ -66,8 +66,7 @@ inline int fmt_snprintf(char* buffer, size_t size, const char* format, ...) {
|
||||
// ERANGE - buffer is not large enough to store the error message
|
||||
// other - failure
|
||||
// Buffer should be at least of size 1.
|
||||
inline int safe_strerror(int error_code, char*& buffer,
|
||||
size_t buffer_size) FMT_NOEXCEPT {
|
||||
inline int safe_strerror(int error_code, char*& buffer, size_t buffer_size) {
|
||||
FMT_ASSERT(buffer != nullptr && buffer_size != 0, "invalid buffer");
|
||||
|
||||
class dispatcher {
|
||||
|
||||
Reference in New Issue
Block a user