Compilation fix.

This commit is contained in:
vng 2015-02-02 12:50:00 +03:00 committed by Alex Zolotarev
parent 071a1aa924
commit 57133455c6

View file

@ -7,7 +7,7 @@
namespace bricks {
namespace strings {
std::string Printf(const char *fmt, ...) {
inline std::string Printf(const char *fmt, ...) {
const int max_formatted_output_length = 1024 * 1024;
static char buf[max_formatted_output_length + 1];
va_list ap;