Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Why doesn't a container (e.g.) vector pass allocator to allocator-aware element-type?

c++ c++17 allocator

C++ class reference conversion into && parameter does not work

c++ c++17

Is there any way to mark a function parameter as constexpr?

c++ c++17 constexpr

why does -D_FORTIFY_SOURCE=2 has no effect in my compilation?

gcc c++17 fortify-source

Any way to do a std::upper_bound on a member variable?

c++ c++17

How to avoid the "pessimizing-move" warning of NRVO?

Find only first std::regex match efficiently

c++ regex c++17 lexer

What has changed in C++17 in terms of MOVE elision

c++ c++17 copy-elision

How do you convert format/va_list to std::string? (How do you use vsnprintf/_s?)

c++ c++17

Non-triviality of class type due to presence of default member initializer(s)

c++ c++17 language-lawyer

Pass-through constructor for std::optional arguments

c++ c++17 stdoptional

using C++ functions in PostreSQL

c++ postgresql c++17

Generic 'member function' wrapper for other member function(s)?

How do I return an optional pointer or reference ( std::optional )?

Performance effect of using execution policy with find_if

[[nodiscard]] attribute different compilation result for GCC and Clang

c++ gcc c++17 clang nodiscard

How to check if a std::map contains a key that satisfies a predicate

c++ c++17 std stdmap

Using a pack expansion with an index - is it UB?

CRTP for conditionally adding a member

How to iterate over the size of a parameter pack with a compile-time index parameter