diff options
author | yazevnul <yazevnul@yandex-team.ru> | 2022-02-10 16:46:46 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:46 +0300 |
commit | 8cbc307de0221f84c80c42dcbe07d40727537e2c (patch) | |
tree | 625d5a673015d1df891e051033e9fcde5c7be4e5 /util/stream/printf.h | |
parent | 30d1ef3941e0dc835be7609de5ebee66958f215a (diff) | |
download | ydb-8cbc307de0221f84c80c42dcbe07d40727537e2c.tar.gz |
Restoring authorship annotation for <yazevnul@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/stream/printf.h')
-rw-r--r-- | util/stream/printf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/stream/printf.h b/util/stream/printf.h index 1c7ddc0664..c6199a15ef 100644 --- a/util/stream/printf.h +++ b/util/stream/printf.h @@ -2,7 +2,7 @@ #include <util/system/compat.h> -class IOutputStream; +class IOutputStream; /** * Stream-based `printf` function. Prints formatted data into the provided stream. @@ -12,7 +12,7 @@ class IOutputStream; * @param fmt Format string. * @param ... Additional arguments. */ -size_t Y_PRINTF_FORMAT(2, 3) Printf(IOutputStream& out, const char* fmt, ...); +size_t Y_PRINTF_FORMAT(2, 3) Printf(IOutputStream& out, const char* fmt, ...); /** * Stream-based `vprintf` function. Prints formatted data from variable argument @@ -22,4 +22,4 @@ size_t Y_PRINTF_FORMAT(2, 3) Printf(IOutputStream& out, const char* fmt, ...); * @param fmt Format string. * @param params Additional arguments as a variable argument list. */ -size_t Y_PRINTF_FORMAT(2, 0) Printf(IOutputStream& out, const char* fmt, va_list params); +size_t Y_PRINTF_FORMAT(2, 0) Printf(IOutputStream& out, const char* fmt, va_list params); |