Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions src/string_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,7 @@ BENCHMARK_EXPORT
std::string HumanReadableNumber(double n, Counter::OneK one_k);

BENCHMARK_EXPORT
#if defined(__MINGW32__)
__attribute__((format(__MINGW_PRINTF_FORMAT, 1, 2)))
#elif defined(__GNUC__)
__attribute__((format(printf, 1, 2)))
#endif
std::string
StrFormat(const char* format, ...);
std::string StrFormat(const char* format, ...) PRINTF_FORMAT_STRING_FUNC(1, 2);

inline std::ostream& StrCatImp(std::ostream& out) BENCHMARK_NOEXCEPT {
return out;
Expand Down
Loading