Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

constructor delegates to itself in g++ & clang++

std::mt19937 and std::uniform_real_distribution returning boundary value every time

c++ c++11 random

`is_trivially_destructible` does not work with inherited class

c++ c++11 visual-c++ c++14

error when defining a std::shared_ptr with new operator

c++ c++11 shared-ptr

Why does decltype return type fail for recursive template, while return type deduction works just fine?

Templatize enum class operators

Does joining a member thread accessing other members of its parent class in the parent's destructor result in undefined behavior?

In C++, is it okay to implement an iterator interface in which advancing invalidates the "current" element?

initialise object with equal operator

c++ c++11 initializer

Is std::call_once lock free?

Efficient way to return stl vector by value from function

c++ c++11 stl

decltype(some_vector)::size_type doesn't work as template parameter

What are the negative consequences of using typedefs in an implementation file to shorten type signatutures?

c++ c++11 enums c++14 typedef

Alternatives to std::function for collection of callables

c++ c++11 templates c++14

No instance of function template "std::make_pair" matches the argument list

c++ c++11 unordered-map

How to pass std::promise into a thread? by std::move or by std::shared_ptr?

C++ lambda lexical closure over local variables

c++ c++11 lambda

C++ expand variadic template arguments into a statement

Why clang does not find a function declared prior to the call site?

c++ c++11 clang lookup

Capturing by value in recursive lambda

c++ c++11 recursion lambda