Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

How to avoid triggering this kind of copy constructor in c++11?

c++ c++11 c++17

Is Visual Studio completely standard-conformant regarding that temporaries should be destroyed at the end of the expression?

c++ c++17 language-lawyer

How to assign multiple variables from a vector in c++? [duplicate]

Return value of std::filesystem::create_directories() on paths with trailing slash

Strange behavior in boost::variant's handling of move-only types

c++ boost c++17

deduction guides for std::array

Does GCC 7.3 contain all c++17 features?

c++ linux cmake c++17 gcc7

Is the C++ NVRO applicable with object slicing or with a local object data member?

Create compile-time constants with first N bits set

c++ c++17

Is lexically_normal() redundant on a call to std::filesystem::canonical() or std::filesystem::weakly_canonical()?

c++ c++17 std-filesystem

Why does std::optional::value_or() take a U&& rather than T&&?

c++ c++17 stdoptional

Can C++11 and C++17 Range-Based For Loop iterate to a specific position instead of full range of the map?

c++ c++11 c++17

Compile time check if string contains quotes

Why is std::is_copy_constructible_v<std::vector<MoveOnlyType>> true?

optional<reference_wrapper<T>> vs. optional<T>& - practical examples?

Constructing a std::string_view from a braced std::string, clang and gcc disagree with -Wconversion

c++ c++11 gcc clang c++17

how to return a specific type from a variant using a visitor?

Inline std::mutex in header file

c++ c++17 inline-variable

API with std::pair<float, float> breaks when switching from C++14 to C++17 on ARM?