Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Aligned storage and standard layout

c++ c++11

Why wasn't the move constructor called? [duplicate]

Basic C++ atomic array

How do I make my iterator classes not look like container classes?

c++ templates c++11 googletest

Why is std::bitset::size non-static

c++ c++11 std bitset

In C11/C++11, possible to mix atomic/non-atomic ops on the same memory?

Can std::atomic cancel out increments with decrements?

How to use std::scoped_allocator_adapter?

libc++ implementation of std::condition_variable_any

How to write operator= for anonymous union with non-trivial members with virtual methods

c++ c++11 unions

reinterpret_cast<volatile uint8_t*>(37)' is not a constant expression

c++ c++11 avr

validate integer is some enum class item (C++11)

c++ c++11 enum-class

No compliant way to convert signed/unsigned of same size

c++ c++11 language-lawyer

order a vector of points based on another vector

Multi-line raw string literals as preprocessor macros arguments

c++ c++11

Variadic template code compiles on GCC 4.6 but not on clang or GCC 4.7

Why does this call the copy constructor, not the move constructor?

c++ c++11 move-semantics

C++11 non-blocking producer/consumer

Why does boost::future<T>::then() spawn a new thread?

c++ multithreading c++11 boost