Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

Does/would c++11/14 support something like vector<auto>

c++11 c++14

why does the standard let me free-store allocate classes without destructors?

c++ c++11 c++14

Specialized template dispatch independent of template parameter position

c++ templates c++14 c++17

Does noexcept apply to exceptions propagating from initializer lists

How to insert an integer with leading zeros into a std::string?

c++ c++14 stdstring

C++ Vector of unique pointers practice

How to disengage std::experimental::optional?

Splitting a vector by a pattern

c++ c++11 c++14

C++ Using lambda for implicit constructor call expecting a function pointer

Using std::endl on an ostream makes my file binary

Troubles with std::enable_if and std::is_arithmetic as template parameter

How to ensure auto parameters of a lambda are of the same type?

c++ lambda c++14

Compiler crashes on generic lambda

c++ qt c++11 qt5 c++14

Why does -O2 or greater optimization in clang break this code?

why for-loop isn't a compile time expression and extended constexpr allows for-loop in a constexpr function

c++ c++11 c++14 constexpr

Using [[deprecated]] attribute when warnings are errors (-Werror)

Find minimum number of digits required to make a given number

c++ c++14

Is there an equivalent to the range-based `enumerate` loop from python in modern C++?

c++ c++14 c++20 enumerate

Operator overload of class wrapped in smart pointers

Correct usage of unique_ptr in class member

c++ c++11 c++14 unique-ptr