Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Are inheriting constructors noexcept(true) by default?

Can any function be a deleted-function?

c++ c++11 deleted-functions

Refactoring a class

c++ refactoring c++11

Copy but not move

c++11

Variadic functions (without arguments!)

templates c++11

std::bind not working

c++ c++11 bind

Combining two regular expression c++0x

c++ regex c++11

Perfectly emulate nullptr

c++ null c++11 nullptr

Use cases of std::multimap

c++11

Variadic templates question

c++11 variadic-templates

c++ function map implementation

Xcode 4.2 won't recognize C++ raw string literals?

c++ xcode c++11

Linker error when using an extern template

c++ templates linker c++11

C++ Access this in New Function Declarator Syntax

c++ c++11

In the standard, what is "derived-declarator-type"?

c++ c++11 standards

Most concise way to disable copy and move semantics

c++ c++11 copy move-semantics

How to get the minimum or maximum element in a vector of structures in C++, based on some field in the structure

c++ c++11

What kind of "Traits" are used/defined in the C++0x Standard

c++ c++11 traits typetraits

How does C++20's memory model differ from that of C++11?

c++ c++11 c++20

Why is it ill-formed to have multi-line constexpr functions?

c++ c++11 language-lawyer