Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

When to use explicit specifier for multi-argument constructors?

Reference invalidation after applying reverse_iterator on a custom made iterator

AFAIK, the code below shouldn't compile, but it does in clang and GCC. What am I missing here?

c++ c++11 language-lawyer

What is the (searchable) name for this syntax...?

c++ c++11

Swap integers via XOR in single line. Is it really allowed in c++11?

Compiling C++ code using __float128

c++ c++11 g++

Is it safe to remove the c++ volatile here?

c++ c++11 volatile

initializer list constructor error with CRTP

Finding all keys that correspond to same value in std::unordered_map

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

Trouble understanding C++14 Relaxed constexpr restrictions

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

Why is the order of destruction of these function-local static objects NOT the inverse of their order of initialization?

Is auto in template parameter list in lambdas part of the standard?

Initialize a container with iterator range of container with different type

c++ c++11 stl

Should I exchange usleep by sleep_for

c++ c++11

Sum function with return type large enough to hold result

c++ templates c++11 sum

Get current number of hours and minutes using chrono::time_point

c++ c++11 chrono

Delete element using iterator, without knowing vector

static_cast<> behaviour on class with implicit conversion operator that returns a const reference

c++ c++11

Should my generic template use T or T&&?

c++ templates c++11

std::move and map assignment

c++ c++11 move-semantics