summaryrefslogtreecommitdiff
path: root/src/buffer.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.hh')
-rw-r--r--src/buffer.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer.hh b/src/buffer.hh
index 81f68441..bc960b20 100644
--- a/src/buffer.hh
+++ b/src/buffer.hh
@@ -21,7 +21,7 @@ enum class EolFormat
Crlf
};
-constexpr Array<EnumDesc<EolFormat>, 2> enum_desc(EolFormat)
+constexpr Array<EnumDesc<EolFormat>, 2> enum_desc(Meta::Type<EolFormat>)
{
return { {
{ EolFormat::Lf, "lf" },
@@ -35,7 +35,7 @@ enum class ByteOrderMark
Utf8
};
-constexpr Array<EnumDesc<ByteOrderMark>, 2> enum_desc(ByteOrderMark)
+constexpr Array<EnumDesc<ByteOrderMark>, 2> enum_desc(Meta::Type<ByteOrderMark>)
{
return { {
{ ByteOrderMark::None, "none" },