Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Do non-local C++11 lambdas live in anonymous namespaces?

What is the exception specification of std::function's move constructor?

c++ c++11

template argument loses a lvalue reference, if not used directly

c++ templates reference c++11

Why is the copy-constructor not called when returning by-value a list-initialized object?

c++ c++11

unordered_map - {{key,value},{key,value}} syntax invalid

How does std::get work?

What are the differences between std::strtol and std::stoi?

c++ c++11

Does modulus overflow?

using non-smart pointers in modern C++

c++ pointers c++11 refactoring

Why does `bool b = 2` work well but `bool b = {2}` yield a warning of narrowing conversion?

Forwarding constructors calls 2 times copy constructor of base class

c++ c++11 constructor

Clang (OS X) requires "template" keyword in a particular nested declaration, while VS forbids it

Binary_search in STL set over set's member function find?

c++ c++11 stl

Fastest function to set bits to one between two bits in an unsigned integer

What is unique_ptr::deleter_type::pointer for?

c++ c++11 unique-ptr

Binding multiple arguments to member functions in C++

c++ c++11 lambda bind

How to exclude C++ raw string literals from syntax highlighting in Vim?

scanf on an istream object

c++ c c++11

Template parameter 'F' is ambiguous

c++ c++11

Vector performance in Go and C++

c++ performance c++11 vector go