Skip to content
Snippets Groups Projects
Commit 58cc8976 authored by Mark Winter's avatar Mark Winter
Browse files

Support empty argument set passed to const_strcat

parent 3d300463
No related branches found
No related tags found
No related merge requests found
......@@ -139,6 +139,10 @@ namespace mph
static constexpr const std::size_t value = 0;
};
constexpr const const_string<0> const_strcat_impl()
{
return make_const_str("");
}
template <typename StrType>
constexpr const StrType& const_strcat_impl(StrType&& str)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment