diff options
Diffstat (limited to 'asl/format.cpp')
-rw-r--r-- | asl/format.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/asl/format.cpp b/asl/format.cpp new file mode 100644 index 0000000..890e532 --- /dev/null +++ b/asl/format.cpp @@ -0,0 +1,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);
+}
|