char * val;
};
template<> class print_vector_format_string<double>
: public print_vector_format_string<float> {
};
template<typename T>
int print_vector(debug_log_level lvl, const T *vec, size_t sz, bool braces)
{
print_vector_format_string <typename T> fmt;
int chars = 0;
if (braces) {
chars += debug_printf(lvl, "{ ");
}
for (size_t i = 0; i < sz; i++) {
chars += debug_printf(lvl, fmt.val, vec[i]);
chars += debug_printf(lvl, "%s", i + 1 != sz ? ", " : "");
//chars += debug_printf(lvl, "%f%s", vec[i], i + 1 != sz ?
// ", " : "");
}
if (braces) {
chars += debug_printf(lvl, " }");
}
return chars;
}
🙈
как ты это отправил в телегу? у меня на сером фоне выглядит
👆😂
Обсуждают сегодня