-
Type:
Improvement
-
Resolution: Incomplete
-
Priority:
Minor - P4
-
None
-
Affects Version/s: 2.1.2
-
Component/s: Internal Code
-
None
-
None
-
3
-
None
-
None
-
None
-
None
-
None
-
None
Instead of StringData having a templated constructor:
template <size_t N> StringData( const char (&val)[N], LiteralTag )
instead, consider making a makeStringData() which eventually calls an appropriate constructor. This way, we can remove the LiteralTag "function signature flag".
This improvement will necessitate making StringData class copyable.