Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Is printf("%d %d", i++, i++) defined behaviour in C++17? [duplicate]

How to remove the nth element from a tuple?

Why is this combination of move and value constructor ambigous for MSVC but not for Clang and GCC in C++17 and above

std::shared_ptr<T[]> VS std::array<T, size>/std::vector<T>

c++ c++17 std shared-ptr

What sequence of operations could possibly have `int i = 1; f(i++, i);` invoke `f(2, 2)`?

std::cout with constexpr on templated function works. Why? [duplicate]

c++ c++17 constexpr cout

Program crashes when filesystem::path is destroyed

Why synchronized_value was not added to C++17/C++20?

Validity of presenting an xvalue as an lvalue

Should I rely on copy elision or on move semantics?

c++ c++17

Turn C string literal into std::integer_sequence at compile-time with C++17

c++ c++17

Is load() called implicitly when using a method from an std::atomic?

c++ pointers c++14 atomic c++17

Why sometimes local class cannot access constexpr variables defined in function scope

What would be the C++20 concept for an iterable container?