Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

How to iterate over the types of std::variant?

Compiler for C++ 17 [closed]

c++17

What is a Node Handle?

c++ c++17

Using C++17 'any' with Xcode 8.1

c++ c++17 stdany

Returning const char* from a string literal in C++? [duplicate]

gcc and clang throw "no matching function call" but msvc (cl) compiles and works as expected

c++ gcc clang c++17 cl

why C++17 destroy()/destroy_n() functions run forward (and not backwards)?

c++ c++17

Using incomplete type in a member function of a class template

c++ templates c++17

Sequence points - is this gcc warning a bug?

c++ c++17 language-lawyer

Type trait for copying cv reference qualifiers

c++ c++11 c++14 typetraits c++17

Is it possible to use std::byte as the underlying type for an enum class?

c++ c++17

Filter a tuple of types in c++17

c++ templates tuples c++17

Template ignores [[nodiscard]] attribute

Getting active value in std::visit without knowing which value is active

c++ c++17 variant

Default argument for a functor in a templated parameter

Is there any way to create a function that takes as argument a member function or a member?

Difference between S() vs S{}?

Neat way how to cyclically iterate 4 enum class values in both directions in C++?

Write a function that only accepts literal `0` or literal `1` as argument

How to Insert spaces in (cout << ... << args) using fold expressions?

c++17 fold-expression