Remove unused type usings

This commit is contained in:
2022-04-26 16:09:35 +02:00
parent 086eaa9be4
commit 192eebf43f

View File

@ -21,9 +21,6 @@ class ConfigWrapper : public ConfigWrapperInterface
CPP_DISABLE_COPY_MOVE(ConfigWrapper)
public:
using DefaultValueCallbackRef = T(&)();
using DefaultValueCallbackPtr = T(*)();
using value_t = typename std::conditional<std::is_same<T, std::string>::value, const T &, T>::type;
using ConstraintCallback = ConfigConstraintReturnType(*)(value_t);