Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Locale specific behavior in the regex library?

c++ regex c++11 locale

unique_ptr VS auto_ptr [duplicate]

c++ c++11 smart-pointers

Passing by constant reference in the lambda capture list

c++ c++11 lambda

Type id of std::string for variable vs. string in argument?

Forwarding all constructors in C++0x

c++11 Thread class how to use a class member function

c++ c++11

Prevent undesired conversion in constructor

How to write a variadic template recursive function?

std::map access operator deprecated? no operator [] matches these operands

c++ c++11

What's the best way to return a tuple from function in C++11?

c++ c++11 stdtuple

Is there a compiler bug exposed by my implementation of an is_complete type trait?

c++ templates c++11 gcc clang

Why are different conversion functions for int and const int allowed?

Difference in c_str function specification between C++03 and C++11

c++ string c++11 c++03 c-str

A weird behavior of using-declaration

C++11 move constructor

c++ c++11 move-semantics

C++ variadic template function parameter with default value

C++11 range-based for() loops evaluate once or multiple times? [duplicate]

c++ for-loop c++11 foreach

`static constexpr auto` data-member initialized with unnamed enum

Does the C++ standard mandate that C-linkage functions are `noexcept`?

How can a type with suppressed move construct/assign still be considered moveable?

c++ c++11 move-semantics