Search code examples
Why does std::push_heap generate a -Wstrict-overflow=3 warning even if no signed types are involved?...


c++g++warningsstdsigned-overflow

Read More
What is the performance overhead of std::function?...


c++booststd

Read More
Should std::get<T&>(tuple) work for zip_view's output?...


c++stdc++20c++23

Read More
Is it thread-safe if I modify an element and insert an element on same container(e.g. std::unordered...


c++containersthread-safetystd

Read More
std::vector move assignment vs move construction: why is the state of 'other' not consistent...


c++stdmovemove-constructormove-assignment-operator

Read More
Can address change when passing a c++ vector by pointer...


c++std

Read More
Error on std::pair when compiling for mac / linux...


c++windowsmacosstd

Read More
Is there inlinable function for pow2?...


c++language-lawyerstd

Read More
does including <execution> require linking against tbb?...


c++parallel-processingexecutionstdtbb

Read More
Can you remove elements from a std::list while iterating through it?...


c++liststdstdlist

Read More
C++ {fmt} issue formatting a custom abstract class...


c++stdfmt

Read More
do I need to close a std::fstream?...


c++stdfstreamofstream

Read More
When should I use a std::inplace_vector instead of a std::vector?...


c++stdc++26

Read More
std::variant reflection. How can I tell which type of value std::variant is assigned?...


c++reflectionstdvarianttype-erasure

Read More
How to store std::mdspan?...


c++stdmdspan

Read More
Why has std::reduce been added in C++17?...


c++stdc++17

Read More
Why is "using namespace std" necessary here?...


c++std

Read More
Difference between <queue>'s emplace and push...


c++queuestdpushemplace

Read More
Why is the STL so heavily based on templates instead of inheritance?...


c++ooptemplatesstlstd

Read More
Is std an unqualified id?...


c++std

Read More
Iterator for nested loops unrolling in C++...


c++loopsiteratorstdnested-loops

Read More
How to align std::array contained data?...


c++arraysc++11stdmemory-alignment

Read More
Unclear template resolution...


c++c++11templatesstdmetaprogramming

Read More
Why no compile error for `std::reference_wrapper<void>` in C++20?...


c++c++20stdc++-concepts

Read More
no std namespace...


c++namespacesstd

Read More
A better / correct way to compare and aggregate Vectors containing orders in C++?...


c++vectorstd

Read More
string in namespace std does not name a type...


c++stringnamespacesstd

Read More
Creating standard library modules with Premake...


c++stdvisual-studio-2022premake

Read More
is getenv_s not part of cstdlib?...


c++visual-c++std

Read More
Iterator for 3D index using a containerless iterator and parallel std::for_each...


c++iteratorstdc++20iota

Read More
BackNext