Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

trivially default constructible std::optional and std::variant

How std::transform and std::plus work together?

c++ c++11 c++14

no viable conversion from returned value of type const_iterator to iterator

Does "= default" allow out-of-line implementations?

c++ c++11

Return by universal reference

c++ templates c++11

valgrind: Unrecognised instruction at address 0x5111715

Why can't I store my objects in an unordered_set?

c++ c++11 unordered-set

How is allocator-aware container assignment implemented?

How can I know if I need to delete something in C++?

Is overloading on all of the fundamental integer types is sufficient to capture all integers?

c++ c++11 language-lawyer

Are shared_ptr on static objects good?

Performing a Regex search and Replace on a std::string

c++ regex string c++11 search

Why is {} used to access operator() in std::hash?

Is returning a vector slower than passing by reference?

c++ c++11 stl c++14 stdvector

C++ async + future (deferred vs async)

dynamic exception specifications are deprecated

c++ c++11

Is atomic<T*> always lock free?

c++ c++11 std stdatomic

One template specialization for several enum values

std::tie fails with "cannot bind non-const lvalue reference" when passed value from a function call

How to define the size of member vector in constructor of a class?