mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Build fix2
This commit is contained in:
@@ -46,7 +46,7 @@ struct CommandArgsConsumerSingle
|
||||
struct CommandArgsVariantConsumer
|
||||
{
|
||||
template <typename V, typename T1, typename... Ts>
|
||||
static std::enable_if_t<sizeof...(Ts) > 0, char const*> TryConsumeTo(V& val, char const* args)
|
||||
static std::enable_if_t<0 < sizeof...(Ts), char const*> TryConsumeTo(V& val, char const* args)
|
||||
{
|
||||
T1 v;
|
||||
if (char const* next = CommandArgsConsumerSingle<T1>::TryConsumeTo(v, args))
|
||||
|
||||
Reference in New Issue
Block a user