Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Is there a way to get a compiler warning when returning a by-value string_view from a temporary?

TColor Initialise with int works with {} but not ()

Why doesn't std::integral_constant<lambda> work the same way as std::integral_constant<function-ptr>?

c++ c++17 language-lawyer

How to emulate std::is_constant_evaluated in c++17? [duplicate]

c++ c++17 constexpr

regex with string_view returns garbage

c++ regex c++17

cv-qualifier propagation in structured binding

Why explicit-ness of std::pair's heterogeneous "move"-constructor changed in C++17?

Are nested parentheses allowed in function type alias declaration?

Calling member function of an incomplete type compiles in gcc and does not compile in clang and msvc

Mapping data members of a class

c++ c++17 data-members

How to add a parameter value when forwarding parameters to a variadic template function?

Is there any type defined in Standard Library which has copy constructor but doesn't have a move constructor?

Is it possible to iterate through enum members in a constexpr function, so the values are constexpr?

c++ c++17

Can a lambda be passed a as a template parameter in C++17?

c++ g++ c++17

Omit angle brackets when template has default parameters

Splitting a string at compile time gives different results on different compilers

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

Should std::apply only apply to std::tuple?

How to work around C++ std::string_view out-of-scope problem?

c++ c++17

How to swap two pointers in multi-threaded c++ 17 program?

c++ multithreading c++17