mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-22 17:40:34 +00:00
The C++ standard disallows class template specialization in non-namespace scopes. Clang apparently allows it as an extension. Fix by not using a template - there are just two specializations and no generic implementation. Use regular classes and std::conditional_t to choose between the two.