Skip to content

Commit b44c675

Browse files
Add default ctor to deque which was breaking tests.
1 parent 54418e4 commit b44c675

File tree

1 file changed

+1
-0
lines changed
  • cpp/common/test/includes/standard-library

1 file changed

+1
-0
lines changed

cpp/common/test/includes/standard-library/deque.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ template <class T, class Allocator = std::allocator<T>> class deque {
1313
typedef value_type &reference;
1414
typedef const value_type &const_reference;
1515

16+
deque() = default;
1617
deque(std::initializer_list<T>, const Allocator & = Allocator());
1718

1819
typedef __iterator<T> iterator;

0 commit comments

Comments
 (0)