Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Why is S::x not odr-used?

c++ language-lawyer c++17

Strongly typed using and typedef

c++ c++14 c++17

Is it possible in modern C++ to pass a string literal as a parameter to a C++ template?

c++ c++17 c++20

macOS Clang C++17 filesystem header not found

c++ macos gcc clang c++17

Why is std::move not [[nodiscard]] in C++20?

Why are are std::allocator's construct and destroy functions deprecated in c++17?

Is it possible to get a pointer to one subobject via a pointer to a different, unreleated subobject?

Is std::memcpy between different trivially copyable types undefined behavior?

constexpr if and static_assert

Why do C++17 structured bindings not use { }?

Is stateful metaprogramming ill-formed (yet)?

How to use new std::byte type in places where old-style unsigned char is needed?

c++ vector c++17

Are nested structured bindings possible?

How to get the address of a C++ lambda function within the lambda itself?

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

Difference between "if constexpr()" Vs "if()"

reinterpret_cast creating a trivially default-constructible object

Equivalent ternary operator for constexpr if?

Why has std::reduce been added in C++17?

c++ std c++17

How can I emulate destructuring in C++?

Where to use std::variant over union?

c++ c++17