Skip to content

Commit 2cc3014

Browse files
authored
Add explicit empty template argument list to support C++14 (#586)
1 parent 9d2e8a0 commit 2cc3014

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/EASTL/internal/hashtable.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1756,7 +1756,7 @@ namespace eastl
17561756
try
17571757
{
17581758
#endif
1759-
detail::allocator_construct(mAllocator, eastl::addressof(pNode->mValue), piecewise_construct, eastl::make_tuple(key), eastl::tuple{});
1759+
detail::allocator_construct(mAllocator, eastl::addressof(pNode->mValue), piecewise_construct, eastl::make_tuple(key), eastl::tuple<>{});
17601760
pNode->mpNext = NULL;
17611761
return pNode;
17621762
#if EASTL_EXCEPTIONS_ENABLED
@@ -1782,7 +1782,7 @@ namespace eastl
17821782
try
17831783
{
17841784
#endif
1785-
detail::allocator_construct(mAllocator, eastl::addressof(pNode->mValue), piecewise_construct, eastl::forward_as_tuple(eastl::move(key)), eastl::tuple{});
1785+
detail::allocator_construct(mAllocator, eastl::addressof(pNode->mValue), piecewise_construct, eastl::forward_as_tuple(eastl::move(key)), eastl::tuple<>{});
17861786
pNode->mpNext = NULL;
17871787
return pNode;
17881788
#if EASTL_EXCEPTIONS_ENABLED

0 commit comments

Comments
 (0)