Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Is a queue of lambdas a good design pattern for a work queue in C++11?

c++ c++11 lambda

Concatenating template parameter packs for a unary argument

c++ templates c++11 g++ clang++

Ignoring note: offset of packed bit-field without using "-Wno-packed-bitfield-compat"

c++ c++11 gcc-warning gcc4.4

Alias std::initializer_list in clang

c++ c++11 clang clang++

Why do all the member functions in std::atomic appear both with and without volatile?

c++ c++11 volatile

Is it possible to determine if an enumeration was strongly typed?

c++ c++11 enums typetraits

Class vs enum class as an index type

c++ c++11 enum-class

Is it safe to mix boost::thread with C++11 std::mutex?

c++ multithreading c++11 boost

Why isn't std::next/prev templated by distance like std::advance?

c++ c++11 iterator

Deducing knowledge of original types, whilst simultaneously forwarding

How to document enumeration values with same name with Doxygen?

c++ c++11 doxygen

In C++11, can you pass a ref'ed base class to thread's constructor and get polymorphic behavior?

c++ multithreading c++11 ref

static_assert doesn't recognize a const char* template parameter as constexpr: g++ bug?

C++11 reentrant class locking strategy

Detect if two types are a specialization of a same class template?

Validate contents of std::initializer_list at compile time

Performance of threads in c++11

c++ c++11 concurrency

Empty variardic packs of enums -- do they make two functions different?

SFINAE: detect existence of a template function that requires explicit specialization

May a member function template specialization have a different access level than the main template?

c++ templates c++11