Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Why does a default argument for a lambda argument trigger a -pedantic" GCC warning?

c++ lambda c++11

Can constexpr function evaluation do tail recursion optimization

using C++11 attributes

c++ c++11 attributes

Behavior of C++ template function

Datatypes for representing JSON in C++

c++ json c++11 collections types

Exception safe code and move semantics

c++ c++11

Get argument type of template callable object

When to use std::launch::deferred?

shared_ptr Real life use-cases

c++ c++11 shared-ptr

Why doesn't std::sort accept comparator by reference?

c++ c++11 stl

Does alignas affect the value of sizeof?

c++ c++11

Why does "std::begin()" always return "const_iterator" in such a case?

Nested list (vector of vectors of strings) initialization fails

What's the difference between an ordinary rvalue reference and one returned by std::forward?

Does C++11 for loop allow new or better optimizations?

static_assert - a way to dynamically customize error message

c++ c++11 static-assert

Converting boost::function to std::function

c++ boost stl c++11 std-function

How to use a std::function as a C style callback

c++ c++11 callback

C++ std::function-like template syntax

Copy null terminated char array to std::string respecting buffer length

c++ arrays string c++11 char