Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

C++ dynamic stdc++ symbol used even though shared object has static version of symbol included

c++ gcc linker c++17

Should deduction guide for std::optional be applied when passing std::ref(value)?

How do I use std::filesystem to see if I have write access?

c++ c++17 std std-filesystem

Enable fast-math in Clang on a per-function basis?

c++ c++17 clang++

How can `if constexpr` be made SFINAE-friendly?

c++ c++17 sfinae if-constexpr

Get type contained in variant at run time in C++?

c++ c++11 c++17 pybind11

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