Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Is constexpr a "hint" (like inline) or "a binding request" to the compiler?

c++ c++11 constexpr

Why auto is deduced to int instead of uint16_t

QT - Unknown debugger type "No engine"

Initialize an std::array of tuples with curly braces

c++ c++11

Integer literal for fixed width integer types

c++ c++11

vim and c++11 lambda: auto indentation

vim c++11

why does emplace_back need move constructor

c++ c++11

What's the preferred C++ idiom to own a collection of polymorphic objects?

c++ c++11 polymorphism

How can I use C++11 variadic templates to define a vector-of-tuples backed by a tuple-of-vectors?

Why specifying a lvalue reference for *this on a member function is different from not specifying anything?

c++ c++11

C++ Unified Assignment Operator move-semantics

How do I choose heap allocation vs. stack allocation in C++?

Conditionally replace regex matches in string

C++11: How to get the type a pointer or iterator points to?

c++ templates c++11

std::remove_reference or std::remove_cv first?

Type of auto reference

range-based for on multi-dimensional array

Implementing variadic type traits

Is there a reason to use C++11's std::int_fast32_t or std::int_fast16_t over int in cross-platform code?

c++ c++11 std

SFINAE on functions with default parameters - free function vs operator()