Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Decltype in template parameter of variable

c++ c++11

Initializing a static constexpr from an incomplete type because of a template base class

c++ templates c++11 constexpr

In the example below the function object "rev" is defined in terms of itself. How is this possible?

c++ c++11 lambda functor

Efficiently and elegantly returning emplaced unique_ptr

Let C++ deduce location of the class/namespace a parameter is defined in

c++ c++11

Why does push_back succeed on a struct containing a unique_ptr unless that struct has a custom destructor?

c++ c++11 stl

Get the number of trading days in between two days

c++ boost c++11

std::array member functions empty(), max_size() - useless but for consistency?

c++ c++11 stdarray

Is it valid C++ to cast an rvalue to a const pointer?

c++ c++11 c++03

Overload resolution with variadic higher order functions

Detect same class inheritance with SFINAE

c++11 threads don't modify same values

c++ multithreading c++11

Trying to understand how an overloaded function is chosen

How to dump an std::unordered_multimap<uint, T> to a std::vector<T>?

c++ c++11 vector stl iterator

segment fault for a simple std::shared_ptr construction case

Variadically templated use of std::conditional where one type is an instantiation failure

Can C++ classes with deleted methods be trivially copyable?

c++ c++11 language-lawyer

Partial template specialization for variadic template where [Args...] is empty

Can I use decltype (or something similar) for explicit template instantiation without signature duplication?

for_each on a reverse_iterator of a custom bidirectional iterator requires OutputIterator