Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Converting dozens of non-member functions to methods?

c++ c++11

std::weak_ptr assignment with std::make_shared

c++11 weak-ptr make-shared

moving an object in memory using std::memcpy

c++ c++11

How to split template specialization across different files according to the C++11 standard?

c++ templates c++11 gcc

Why does C++11 require std::sort to have WCET O(n log n)?

Calling methods of actual object instead of parent class

c++ c++11

Recipe for `final`: omit `virtual`?

c++ final c++11

Why gcc cannot detect friend class namespace from its forward declaration?

decltype(auto) with multiple returning types using C++14

c++ c++11 c++14 auto decltype

What are the restrictions on std::map<K, V>::mapped_type?

C++11: Can I create a field whose type has a deleted destructor?

c++ c++11

Can this condition using std::is_same<> be evaluated at compile time?

c++ c++11 compile-time

Why does adding a destructor (even empty) break my struct that uses ref forwarding and collapsing to hold either a ref or copy of a value?

Can multiple threads synchronize a load with a single store using memory_order_acquire using std::atomic

c++11 atomic

Why enclosing a call in a lambda if calling it immediately?

Microsoft VC++ PPL and sleeping

c++ visual-c++ c++11 task ppl

Address Constant Expressions

pointers c++11 constexpr

Same string to multiple streams [duplicate]

c++ performance stl stream c++11

Specialize class for couple of possible arguments(typenames)

c++ templates c++11