Search code examples
Assign a function return-value to std::vector element: Different behavior in C++14 than in C++17...


c++vectorc++17c++14std

Read More
Is this behaviour of std::quote bug?...


c++stlc++14libc++

Read More
Replace template parameter list with variadic parameter...


c++c++14variadic-templates

Read More
How do I concatenate strings repeatedly at compile time?...


c++stringtemplatesc++14template-meta-programming

Read More
Is there a way to iterate over at most N elements using range-based for loop?...


c++c++11stlc++14

Read More
How to restrict function template arguments to be specializations of a specific class template...


c++templatesc++14sfinaeclass-template

Read More
Is (or will be) the use of familiar template syntax in lambda expressions allowed?...


c++lambdalanguage-lawyerc++14

Read More
What is the purpose of _t aliases and _v variable templates for type traits?...


c++c++17c++14language-designtype-traits

Read More
How the bool operator of std::shared_ptr is trrigered in the expression(i.e. `bool is_empty = shared...


c++c++14shared-ptrsmart-pointers

Read More
What's {} in void({})?...


c++gccclangc++14language-lawyer

Read More
How do I initialize a constexpr std::array of std::pair<int, const char[]>?...


c++arraysc++14constexprstdarray

Read More
How do I enforce Qi spirit rule to try all rules in OR condition?...


boostc++14boost-spirit

Read More
c++ 14 Categorized List of 3 Strings...


c++listmultidimensional-arrayc++14

Read More
Is it possible to test if a constexpr function is evaluated at compile time?...


c++c++14c++17constexprcompile-time

Read More
Differences between c++14 std::experimental::filesystem::v1 and c++17 std::filesystem?...


c++c++14c++17

Read More
Why is std::make_unique not implemented using list initialization?...


c++c++14unique-ptrlanguage-designlist-initialization

Read More
C++ dangling reference strange behaviour...


c++c++11c++17c++14

Read More
Get Unicode from json file...


c++jsonunicodec++14

Read More
Why can the return type of main not be deduced?...


c++c++14return-type-deduction

Read More
Legal definitions of main() in C++14...


c++program-entry-pointlanguage-lawyerc++14

Read More
Why isn't the "noexcept" specifier part of the function type?...


c++c++14language-lawyer

Read More
Is there a way to force a specific evaluation order of function arguments?...


c++c++14order-of-executionunspecified-behavior

Read More
Which of these techniques to imitate fold expressions prior to C++17 are considered idiomatic?...


c++templatesc++14variadic-templates

Read More
Why is heterogenous std::*map lookup opt-in in C++?...


c++containersc++14

Read More
Is there any real use case for function's reference qualifiers?...


c++c++11c++14ref-qualifierfunction-qualifier

Read More
Generic way of lazily evaluating (short-circuiting) with std::conditional_t...


c++templatesc++14template-meta-programmingtype-traits

Read More
How to create a variadic generic lambda?...


c++lambdac++14variadic

Read More
What is the purpose of std::forward()'s rvalue reference overload?...


c++c++11c++14c++17perfect-forwarding

Read More
Moving a lambda: once you've move-captured a move-only type, how can the lambda be used?...


c++lambdac++14move-semanticsstdmove

Read More
How to initialize a data member of an array type in a class template's member initializer list?...


c++arraysc++14member-initializationindex-sequence

Read More
BackNext