mirror of
https://github.com/red0124/ssp.git
synced 2025-12-14 21:59:55 +01:00
Replace ss::ternary_t with std::conditional_t
This commit is contained in:
@@ -102,7 +102,7 @@ class converter {
|
||||
constexpr static auto string_error = setup<Matchers...>::string_error;
|
||||
constexpr static auto default_delimiter = ",";
|
||||
|
||||
using error_type = ss::ternary_t<string_error, std::string, bool>;
|
||||
using error_type = std::conditional_t<string_error, std::string, bool>;
|
||||
|
||||
public:
|
||||
// parses line with given delimiter, returns a 'T' object created with
|
||||
|
||||
Reference in New Issue
Block a user