Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

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?

How can I give two compatible names to a C++ class template with deduction guides?

c++ c++17 ctad

How to deduce second parameter type from first parameter?

c++ c++11 templates lambda c++17

Different noexcept property for std containers in different Compilers

c++ std c++17

§12.3.2 [class.conv.fct]/1 in C++1z changed substantially in relation to C++14. Does it make sense?

'Attempt to dereference a past-the-end iterator' when sorting a vector of filesystem paths

Delayed update with proxy objects vs. "Avoid unnamed objects with custom construction and destruction"

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

Is there a way in Range-v3 to prepend or append an element to a range/view?

Undefined reference when defining a template function in the global namespace which is declared in an inline anonymous namespace

c++ c++17 language-lawyer

`LL` vs `i64` suffix in C++ Visual Studio compiler

c++ c++17 64-bit literals int64

Templated constructor not accessible in struct

Printing character after addition as string in C++

c++ string c++14 c++17

How best to test and unwrap std::optional in an if statement

c++ c++17 stdoptional

How to tell if a pointer is the pointer to an array?

c++ arrays pointers c++17