Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

What does the "__cplusplus" macro expand to?

c++ c++11 macros

Simplest implementation of "lightweight type categorization idiom"?

c++ c++11

Is make_unique in initializer list in copy constructor good purpose to not use noexcept specifier?

Heap allocation for std::array

Is it possible to declare a constexpr pointer instead of a pointer to constexpr?

c++ c++11 constexpr

Using `extern template` to prevent implicit instantiation of a template class

Why isn't forwarding reference const?

C++ removing an std::function from a std::vector<std::function<...>>

c++ c++11

How do arbitrary floating point values compare to infinity?

c++ c++11 floating-point

Instantiating a function definition in a template that uses decltype only in certain circumstances

c++ templates c++11 decltype

How to override non-virtual functions?

c++ c++11 overriding virtual

Is std::map allowed to re-balance after read-only operations (like a Splay tree)

c++ c++11 splay-tree

boost::python and set::erase -> weird behaviour

C++11 copy assignment for std::complex in g++ 4.5 - no match for 'operator+'

Estimating time left in C++11

c++ algorithm c++11

type-safe variadic functions with parameters of same type

c++ templates c++11

decltype for member functions

c++ c++11 decltype

Does std::function's copy-constructor require the template type's argument types to be complete types?

c++ boost c++11 tr1

How does one use enable_if for mutually exclusive non-member function templates?

c++ templates c++11 sfinae

How to make a shared_lock or upgrade_lock in standard C++11?