blob: 890e5323fa81c92353d8b1103ade02b4e1ef80c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "asl/format.hpp"
void asl::format_internals::format(
writer* writer,
const char* fmt,
const type_erased_arg* args,
int64_t arg_count)
{
formatter f(writer);
f.write("Hello", 5);
}
|