diff --git a/include/ircd/util/typography.h b/include/ircd/util/typography.h index 42fea6072..d8a5192c4 100644 --- a/include/ircd/util/typography.h +++ b/include/ircd/util/typography.h @@ -237,7 +237,7 @@ ctype(const char *const &begin, /// the template simply as `ctype(const_buffer{"hi"});` which /// should fail because const_buffer's over a string literal see the trailing /// null character. -template +template ssize_t ctype(const const_buffer &s) { @@ -245,7 +245,7 @@ ctype(const const_buffer &s) } /// Boolean alternative for ctype(const_buffer) -template +template bool all_of(const const_buffer &s) { @@ -256,7 +256,7 @@ all_of(const const_buffer &s) } /// Boolean alternative for ctype(const_buffer) -template +template bool none_of(const const_buffer &s) {