Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Why does this code compile (C++11) without a type mismatch error?

Is it always the case that sizeof(T) >= alignof(T) for all object types T?

Isn't the const modifier here unnecessary? [duplicate]

So can unique_ptr be used safely in stl collections?

c++ c++11 auto-ptr unique-ptr

Is codecvt not a std header?

c++ c++11

"to_string" isn't a member of "std"?

c++ linux string c++11 g++

How do I get the argument types of a function pointer in a variadic template class?

Why was the register keyword created?

c++ c c++11 language-lawyer

What's the exact semantics of deleted member functions in C++11?

Capturing a static variable by reference in a C++11 lambda

c++ c++11 lambda

Why user-defined move-constructor disables the implicit copy-constructor?

What are good use-cases for tuples in C++11?

c++ c++11 tuples

Partial ordering of function templates - ambiguous call

c++ templates c++11 ambiguous

Pack expansion for alias template

Why aren't there compiler-generated swap() methods in C++0x?

c++ language-design c++11

Best way to append vector to vector [duplicate]

c++ c++11 vector append std

What is the difference? clang++ | clang -std=c++11

c++ c c++11 clang clang++

Comparing std::functions for equality?

Disambiguate overloaded member function pointer being passed as template parameter

c++ templates c++11 typetraits

How do I write an ADL-enabled trailing return type, or noexcept specification?