Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Is C++11's long long really at least 64 bits?

c++ c++11 long-long

Which headers in the C++ standard library are guaranteed to include another header?

Is specializing std::swap deprecated now that we have move semantics? [duplicate]

What exactly is a 'side-effect' in C++?

c++ c++11

std::unordered_map::find using a type different than the Key type?

c++ c++11 unordered-map

"Use of deleted function" error with std::atomic_int

c++ c++11 stdatomic

C++0x variadic template pass by reference

c++ templates c++11

Switch Statements with strongly typed enumerations

c++ enums c++11

GCC error with variadic templates: "Sorry, unimplemented: cannot expand 'Identifier...' into a fixed-length argument list"

What is the purpose of a declaration like int (x); or int (x) = 10;

Why use variadic arguments now when initializer lists are available?

Why does parameter pack expansion work differently with different C++ compilers?

c++ templates c++11 parameters

Is gcc or clang correct about this behavior?

C++11 mode or settings for emacs?

Making a user-defined class std::to_string-able

c++ string c++11 tostring

Are move constructors produced automatically?

c++ c++11 move-constructor

Correct way of initializing a struct in a class constructor

c++ c++11 struct

Is the std::array bit compatible with the old C array?

Does the C++ standard specify anything on the representation of floating point numbers?

std::initializer_list as function argument

c++ c++11 initializer-list