Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

std::make_shared inside std::apply

c++ c++17

Using a non static value as default argument in a function

Does std::byte constructor extract LSB or MSB from integer?

c++ c++17 std-byte

Can I initialize std::unique_ptr of array without default initialization ( I want just let it have dummy value ) [duplicate]

How to instantiate std::vector using decltype?

std::variant vs pointer to base class for heterogeneous containers in C++

Iterator for all combinations of 2 ranges

Can I use std::align to align memory to arbitrary values of 2?

c++ c++11 c++17

How to define a variant<x,y,z> extracting subtypes of a template parameter

How to prevent function parameter conversion from value to reference type in C++17?

c++ c++17

Why does taking a function pointer to `operator new` compile in C++14, but not in C++17?

How to compare the type in a constexpr?

c++ templates c++17

What is the reason for the odd syntax of [[maybe_unused]] on type aliases?

c++ c++17

What is a better practice for initializing class members?

c++ c++17

What's the purpose of std::pmr::polymorphic_allocator?

Calling std::async twice without storing the returned std::future

Copy elision for captured local variables in returned lambda

c++ c++17 copy-elision

How to suppress GCC compiler warning: inline variables are only available with -std=c++1z or -std=gnu++1z

Strange behavior when calling std::invoke(std::forward(...)) with address-sanitization in a std::thread with a std::ref

How to use overload `operator==` in a `std::variant` wrapper class to make comparisons between Setting Vs Setting and T vs T?