Skip to content

Commit 55c876c

Browse files
author
Rafał Hibner
committed
Update GraphQLService.h
1 parent a3cd44f commit 55c876c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/graphqlservice/GraphQLService.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -430,13 +430,13 @@ class [[nodiscard]] AwaitableObject
430430
public:
431431

432432
template <typename U>
433-
AwaitableObjectTest(U&& value, std::enable_if_t<std::is_assignable_v<T,U>>* = nullptr)
433+
AwaitableObject(U&& value, std::enable_if_t<std::is_assignable_v<T,U>>* = nullptr)
434434
: _value { std::forward<U>(value) }
435435
{
436436
}
437437

438438
template <typename U>
439-
AwaitableObjectTest(U&& value,std::enable_if_t<!std::is_assignable_v<T,U>>* = nullptr)
439+
AwaitableObject(U&& value,std::enable_if_t<!std::is_assignable_v<T,U>>* = nullptr)
440440
: _value ( std::make_shared<typename T::element_type>(value) )
441441
{
442442
}

0 commit comments

Comments
 (0)