Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

User-declared default constructor + in-class initializers != user-provided constructor? [duplicate]

Should I use pointers or move semantics for passing big chunks of data?

c++ pointers c++11 move

Which IDEs and text editors can deduce type of variables declared using auto keyword in C++11

c++ c++11 ide editor auto

Does the C++ standard allow zero-initialization of a POD object with const members?

c++ c++11 language-lawyer

Why allow `propagate_on_container_swap == false` in Allocators, when it might cause undefined behaviour?

Local static/thread_local variables of inline functions?

c++ c++11 c++14

Builder pattern: making sure the object is fully built

Is it legal to check whether the address of a subobject lies within the bounds of a containing object

Uniform initialization in C++0x, when to use () instead of {}?

c++ c++11

Boost.Asio: The difference between async_read and async_receive

c++ boost c++11

Is writing to memory an observable behaviour?

c++ c++11

Testing endianess at compile-time: is this constexpr function correct according to the standard?

c++ c++11 constexpr

Is it possible to use a lambda function for a template parameter?

c++ c++11 lambda

Issue with std::shared_ptr, inheritance, and template argument deduction

Using a template alias instead of a template within a template

c++ templates c++11

Why does having a base class disqualify a class from being aggregate?

c++ c++11

C++11 inline lambda functions without template

c++ c++11 lambda

Preferred way of initialization in c++11 [closed]

c++ c++11

Does C++11 require allocators to be default constructible, libstdc++ and libc++ disagree?

Moving out of one side of a ternary operator

c++ c++11 gcc clang