Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

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

Forcing or preventing use of a particular minor version of libstdc++

c++ linux gcc c++11 libstdc++

Do gcc's __float128 floating point numbers take the current rounding mode into account?

c++ c++11 gcc floating-point

Ambiguous function call with two parameter packs

c++ templates c++11

Why is std::seed_seq non-copyable according to C++11, and why doesn't gcc/clang conform?

c++ c++11 g++ libstdc++

Deducing const from operator T &()

c++ c++11