What is C++20’s string literal operator template?
There were two separate proposals: Allowing string literals as non-type template parameters (P0424) Allowing class types as non-type template parameters (P0732) The first proposal was partially merged into the second. String literals still are not valid arguments as non-type template parameters, but they are valid arguments into class types. The example from [temp.arg.nontype]/4 might help: … Read more