diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-01-05 16:23:04 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-01-05 16:23:04 +0100 |
commit | 11894bef04095c37196af5ae1bfed885775d49eb (patch) | |
tree | 42c776a4caf24559d2e7e3aeedcafa73674b455b /asl/format.hpp | |
parent | 8607772d4f9e21f53c1abfd9379737403b97f430 (diff) |
Add formatting & factories for status
Diffstat (limited to 'asl/format.hpp')
-rw-r--r-- | asl/format.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/asl/format.hpp b/asl/format.hpp index ac51693..70ccd09 100644 --- a/asl/format.hpp +++ b/asl/format.hpp @@ -55,6 +55,8 @@ public: {
m_writer->write(as_bytes(s.as_span()));
}
+
+ constexpr Writer* writer() const { return m_writer; }
};
template<formattable... Args>
|