Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

C-style Callbacks in C++11

c++ c++11 curl lambda callback

How to implement typed strings in C++11?

c++ c++11 syntactic-sugar

Does the C++ standard allow for an implementation to coalesce allocations?

c++ c++11 c++14

Unknown return type in template

c++ templates 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