Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Using std::complex<double> as a std::map key

c++ c++11 stdmap

How to return a template pack nested in other pack?

Clang/GCC plugin to interpret custom c++11 attributes

c++ gcc c++11 clang

Variadic template extractions

relaxed ordering of c++11 memory model

c++11 memory-model

std::move calls the destructor unexpectedly

c++ c++11 move-semantics

Where in the C++11 standard does it prohibit 'template <typename T> class A {...}; template <typename T> class A<int> {...};' (if anywhere)?

Is it possible to get a thread object for the main thread, and `join()` with it?

c++ multithreading c++11

Datatype for lookup table/index into array

c++ oop c++11

Error: "Mixed implicit and static pattern rules" in my Makefile

c++ windows c++11 makefile

C++ multi-index map implementation

c++ c++11 dictionary tuples

Reading a file into a vector all at once

c++ c++11 file-io

cygwin support for C++11 in g++4.9.2

c++ c++11 cygwin

Making a tuple-like compile-time "linked-list" with variadic templates

Memory allocation for public and private fields - GCC way

Should we be calling the base class move copy/assignment constructors from the derived class

c++ c++11

Is it safe to use an exception outside the catch statement if it is held in a std::exception_ptr?

std::atomic<int> decrement and comparison

Non-copyable elements in vector

c++ c++11 stl move-semantics

Why does std::istringstream appear to resolve differently to std::ifstream in the ternary (?:) operator?