Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Copy on Write with shared_ptr

Is the constexpr specifier required on the declaration of a constexpr static member initialized outside of the class?

std::is_member_function_pointer not working for noexcept member functions

c++ c++17

Auto non-type template parameter: ambiguous partial specializations in Clang

c++ templates clang c++17 auto

Why do all C++ compilers crash or hang from this code?

c++ templates c++14 c++17

Why does copy initializaton require destructor in C++17 with guaranteed move/copy elision?

std::list<std::unique_ptr>: empty initializer list vs. default constructor

c++ unique-ptr c++17

Template deduction guide doesn't seem to be working

c++ templates c++17

Are floating point operations resulting in infinity undefined behavior for IEC 559/IEEE 754 floating-point types

Has it been established if move/copy constructor/assignment are "deleted" or "not declared" in C++17?

c++ language-lawyer c++17

Is it possible to initialize member variable (or base class) of a non-copyable type?

c++ c++17 language-lawyer

Creating a compatible String object

Using std::launder to get a pointer to an active object member from a pointer to an inactive object?

Silencing gcc's "only available with -std=c++XX or -std=gnu++XX" warning

c++ c++11 g++ c++17

Passing overloaded CRTP class member method to lambda

Composite property object that inhibits multiple signal emissions when all subobjects are changed

c++ signals composite c++17

Why does this using another constant variable defined later qualify an expression as a non constant expression

Can a non-aggregate class with deleted constructors and destructor be ever instantiated?

Android NDK CMake uses C++17