Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

C++ standard: do namespace-scoped constexpr variables have internal linkage?

How can a function run "as if" on a new thread without doing so?

How opencv 4.x API is different from previous version?

c++ opencv c++11

How do I pass a C++11 random number generator to a function?

c++ random c++11

Using `std::function<void(...)>` to call non-void function

variadic template of a specific type

Does std::make_shared() use custom allocators?

When is explicit move needed for a return statement?

Template specialization on template member of template class

Which rules determine whether an object is trivially copyable

c++ c++11 move

Why is implicit conversion from const to non-const allowed?

c++ c++11 templates constants

Best way to use emplace_back to avoid move constructor call?

c++ c++11 c++17 emplace

Substitution failure with `std::function` and previously deduced template parameter - why?

Can std::function be move-constructed from rvalue reference to a temporary functor object?

c++ c++11 std rvalue-reference

what is the difference between std::call_once and function-level static initialization

multithreading c++11

How to use noexcept in assignment operator with copy-and-swap idiom?

implicit conversion from class to enumeration type in switch conditional

Non-Movable C++17 Unique Pointer

c++ c++11 c++17 unique-ptr

When not to use `auto&&`?

How can I create a std::function with a custom allocator?

c++ c++11 allocator