Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Can I store a function's output parameter into a unique_ptr?

c++ c++11 unique-ptr

What does these few lines do as a small test framework in C++?

c++ c++11

Using std::mutex as member variable in a class

c++11 mutex stdmutex

Doesn't compiler give an ambiguous error for "const" and "not-const" functions

for_each not returning (boolean) value

c++ c++11

C++ binary predicate implementation requirements for std::search

c++ c++11

How can I use all the cores in the loop?

Qt: How to use Qt's Smartpointers

c++ qt c++11 smart-pointers

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