Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

C++ conditional template class definition of member function

c++ c++17

constexpr-if(false) vs two phase name lookup [duplicate]

How does libc++'s std::is_literal_type work?

c++ c++17 std libc++

correct syntax to access a template variable specialization

c++ templates c++17

Fold Expression template argument deduction/substitution failed

c++ c++17

Variant: no matching function for call to 'get'

Why doesn't the compiler warn against ODR violations in the same translation unit

What is the proper way to express a std::byte literal in C++17?

c++ byte c++17

How is a dangling pointer deduced in string_view?

c++ c++17

Default lambda as templated parameter of a function

pack fold expression (c++17 extension) available when building with c++14

c++ g++ c++14 c++17 clang++

Deduct template parameter fail while using if constexpr

Why does assigning an int to a std::variant<long int, ...> fail?

c++ c++17 std-variant

Is there any benefit to tagging my class's constructor(s) as [[nodiscard]] when the class itself is tagged as [[nodiscard]]?

Can I place an std::function's capturing lambda in my own memory?

Template parameter deduction for constructors from initializer list

Why is std::is_move_constructible<S>::value == false despite S move-constructing just fine? What is the correct behavior?