diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-11-19 00:08:33 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-12-20 15:35:58 +0100 |
commit | d241eaf1b209dcfb05656842dd6250067b704d99 (patch) | |
tree | 49f34f6226f4614611d16ba6332b1b50b51a4712 /asl/print.hpp | |
parent | 58200ce939a591008a8d9406f437252ce2b175cf (diff) |
Add allocator, start work on box
Diffstat (limited to 'asl/print.hpp')
-rw-r--r-- | asl/print.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/asl/print.hpp b/asl/print.hpp index 4e7d07a..208bcb2 100644 --- a/asl/print.hpp +++ b/asl/print.hpp @@ -9,8 +9,8 @@ namespace print_internals {
// @Todo Make print writers thread safe
-writer* get_stdout_writer();
-writer* get_stderr_writer();
+Writer* get_stdout_writer();
+Writer* get_stderr_writer();
} // namespace print_internals
|