Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Is this reinterpret_cast problematic in principle, and/or in practice?

c++ c++17 language-lawyer

How to implement a universal function for both sequence and associative container?

friend, template, namespace

c++ templates c++17 friend

When is initializer_list allowed to be deduced?

c++ language-lawyer c++17

Substitution failure for template template argument

Conditionally creating members inside a class

c++ class c++17 if-constexpr

Is -Wreturn-std-move clang warning correct in case of objects in the same hierarchy?

c++ clang warnings c++17 move

g++ breaking change in std::filesystem::last_write_time

c++ g++ c++17

How to convert chrono::seconds to string in HH:MM:SS format in C++?

c++ c++17 c++-chrono

How can I combine an in place transformation, and a copy transformation?

Is it possible to ensure a constexpr function is called at most once at compile time?

c++ c++11 c++14 c++17 c++20

Templated lambdas in C++17 without an auto argument

Use of std::optional to pass a std::vector<int> to a functional by reference

c++ std c++17 stdoptional

Why can std::map::emplace usage leak memory?

c++ c++11 c++14 c++17

How to determine whether an object has heap allocated members?

c++ class templates c++17 member

Too many if/else statements in converting user inputs to types in C++

why c++ is rounding of big numbers to ceil and small numbers to floor [duplicate]

Why doesn't make_optional work for file streams?

Is default initializing class members always advisable?

c++ initialization c++17

Is there a more C++ elegant implementation to complete the function jump?

c++ design-patterns c++17