Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

What's the type of std :: move?

c++ c++11 move-semantics

Does capture by value in a C++ lambda expression require the value to be copied with the lambda object?

c++ lambda c++11

std::remquo purpose and usage?

c++ c c++11 floating-point c99

Proper use of std::enable_if or how to replace it

c++ c++11 typetraits

Allocated array already zeroed

c++ memory-management c++11

Why can't the template parameters for enums nested in a template class be deduced?

c++ templates c++11

How to get a type from type_info for template parameters

c++ templates c++11 rtti

clang produces warning regarding c++11 despite update

c++ c++11 clang clang++

Convert scoped enum to int

c++ c++11 type-safety

In c++11 why not right to use moved variable after std::move?

Defect report 1207

c++ c++11 language-lawyer

What does "new int[];" do?

c++ arrays c++11 new-operator

Simple vector initialization in C++11 returns weird error

c++ c++11 vector g++

Container version of C++ sort

c++ c++11 vector

(C++) error: 'invalid_argument' was not declared in this scope

c++ c++11

Difference between Class and Typename for C++ template

c++ templates c++11

C++11 uniform initialization: Field initializer is not constant

Why can't I declare a variable using auto?

How can I check whether a member function has const overload?

c++ templates c++11

Is it possible to apply std::sort on std::unique<T[ ]>?