We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88445ed commit 5a6c159Copy full SHA for 5a6c159
βtests/basic/source/push_back.cppβ
@@ -25,7 +25,7 @@ inline namespace ztd_static_containers_tests_basic_push_back {
25
for (std::size_t i = 0; i < elements; ++i) {
26
if ((i % 2) == 1) {
27
if constexpr (std::is_arithmetic_v<T>) {
28
- c.emplace_back(i);
+ c.emplace_back(T(i));
29
}
30
else {
31
c.emplace_back();
βtests/basic/source/push_front.cppβ
@@ -25,7 +25,7 @@ inline namespace ztd_static_containers_tests_basic_push_front {
- c.emplace_front(i);
+ c.emplace_front(T(i));
c.emplace_front();
βtests/basic/source/static_vector/run_time..empty.cppβ renamed to βtests/basic/source/static_vector/run_time.empty.cppβ
0 commit comments