Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

Bit count : preprocessor magic vs modern C++

Calling `this` member function from generic lambda - clang vs gcc

Is std::vector<T> a `user-defined type`?

std::ignore for ignoring unused variable

Clang >= 3.3 in c++1y mode cannot parse <cstdio> header

c++ c++11 header clang c++14

Are C++14 digit separators allowed in user defined literals?

In C++14 is it valid to use a double in the dimension of a new expression?

Why does enable_if_t in template arguments complains about redefinitions?

Capture and move a unique_ptr in a c++14 lambda expression

c++ c++11 lambda c++14

Using std::make_unique with a custom deleter

c++ c++11 c++14

Is it a conforming compiler extension to treat non-constexpr standard library functions as constexpr?

Does constexpr imply noexcept?

What is performance-wise the best way to generate random bools?

c++ c++11 random boolean c++14

C++ std::unique_ptr : Why isn't there any size fees with lambdas?

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

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

c++ c++11 stl c++14

Why can const members be modified in a constructor?

Should I compare a std::string to "string" or "string"s?

What is the endianness of binary literals in C++14?

c++ endianness c++14

Converting std::unique_ptr<Derived> to std::unique_ptr<Base>

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

Why both runtime-sized arrays and std::dynarray in C++14?