Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Yet another string literal, UDL labyrinth

c++ visual-c++ c++17

Does use of C++17 std::filesystem REQUIRE MacOS 10.15? (Xcode 11.1)

Should I use lock_guard, scoped_lock or unique_lock in this situation?

c++ c++17 mutex lock-guard

Templated conversion operator priority

c++ c++17

C++ 17 parallelism hardware implementation

C++ template template non-type parameter

erroneous explicit template specialization of variable template in gcc

c++ gcc clang c++14 c++17

User-defined vs automatic template deduction guides priorities

Can std::transform or std::generate without ExecutionPolicy be parallel?

A type trait identifying which class provides the function selected by overload resolution

fatal error: 'charconv' file not found in clang 6.0 with -std=c++17

c++ gcc visual-c++ c++17 clang++

Does C++17 allow a non-ascii character as an identifier?

C++17: how to control number of threads in execution policy?

c++ c++17

Is cppreference using the term "[Object's] identity" is two different meanings for c++11 and for c++17?

Check if class is of template specialization (with template arguments like bool or int)

Why does template parameter unpacking sometimes not work for std::function?

Assign std::vector<std::byte> to std::vector<char> WITHOUT copying memory

c++ vector byte c++17 stdmove

Get the last file name from std::filesystem::directory_iterator() without iteration?

c++ c++17 std-filesystem

Why does this lambda [=] capture create several copies?

c++ lambda c++17

Do we have a better way of returning abstract classes in C++?