summaryrefslogtreecommitdiff
path: root/asl/io.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'asl/io.hpp')
-rw-r--r--asl/io.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/asl/io.hpp b/asl/io.hpp
index 9c45624..e54f00c 100644
--- a/asl/io.hpp
+++ b/asl/io.hpp
@@ -7,12 +7,12 @@
namespace asl
{
-class writer
+class Writer
{
public:
- writer() = default;
- ASL_DELETE_COPY_MOVE(writer);
- virtual ~writer() = default;
+ Writer() = default;
+ ASL_DELETE_COPY_MOVE(Writer);
+ virtual ~Writer() = default;
virtual void write(span<const byte>) = 0;
};