indent with tabs
This commit is contained in:
@@ -6,11 +6,11 @@
|
||||
|
||||
namespace td {
|
||||
namespace utils {
|
||||
|
||||
|
||||
template <typename... Args>
|
||||
std::string format(const std::string& format, Args... args){
|
||||
std::string format(const std::string& format, Args... args) {
|
||||
int size = snprintf(nullptr, 0, format.c_str(), args...) + 1; // Extra space for '\0'
|
||||
if (size <= 0){
|
||||
if (size <= 0) {
|
||||
throw std::runtime_error("Error during formatting.");
|
||||
}
|
||||
std::unique_ptr<char[]> buf(new char[size]);
|
||||
|
||||
Reference in New Issue
Block a user