Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

OS X libc++ std::uniform_real_distribution bug

c++ c++11 random libc++

smart_ptr to attribute of class segfault

Placement New and Perfect Forwarding

c++ c++11

How to make an array's derived type accept aggregate initialization?

Constructing a constexpr std::weak_ptr

Is a C++ functor a functor in the sense of category theory?

c++11 category-theory

omit std::placeholders in std::bind

c++ c++11 std-function stdbind

Try-catch doesn't work in shared library?

How to apply low level const to a template variable. I am trying to write a const_cast implementation

c++ templates c++11

Lambda Deleter in VC 2013 vs 2015

Print permutation of {0, 1, 2, 3} by multithread program (C++)

Why would 'deleting' nodes in this lock-free stack class would cause race condition?

How to convert ‘std::chrono::duration<int, std::ratio<2629746l, 1l> >’ to ‘int’ type?

How to cast an int unique_ptr into a void unique_ptr?

c++ c++11

C++11 Thread-safe initialization of function-local static const objects

Is there a way to SFINAE based on available overloads in the current class?

c++ c++11 templates clang sfinae

Standard replacement for QByteArray

c++ qt c++11 qbytearray

using a std::function or a forwarding reference as general-purpose callable object input parameter of a higher-order function?

Are there cases in which trailing-return-type syntax in lambda cannot be avoided?

Constructor calls while copying a class in vector

c++ c++11 vector