Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

Why does make_optional decay its argument type?

Connecting three different objects

c++ c++11 c++14 shared-ptr

Which standard C++ features can be used for querying machine/OS architecture?

Union common initial sequence with primitive

How should a Variable Template be referred to in C++14 when declared at Class scope?

Odd behavior passing static constexpr members without definitions by value

Possible to instantiate templates using a for loop in a C++14 constexpr function?

c++ c++14 constexpr

C++1y/C++14: Assignment to object outside its lifetime is not allowed in a constant expression?

Can I write a function type that returns a function?

Determine `constexpr` execution - during compilation or at runtime?

c++ c++14 constexpr

`weak_ptr::expired` behavior in the dtor of the object

What's {} in void({})?

why declare constrexpr constructors for classes with non-trivial destructors (e.g. unique_ptr, std::variant)

c++ c++14 constexpr c++17

std::move_if_noexcept calls copy-assignment even though move-assignment is noexcept; why?

c++ c++14

Continuous enum C++11

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

Ambiguous reference to namespace within an inline namespace

libc++ vs libstdc++ std::is_move_assignable: Which is the most correct?

c++ c++11 c++14 libstdc++ libc++

Is this legal template lambda syntax?

c++ templates lambda c++14

Is calling std::min on an empty initializer list (and explicitly specifying the type) undefined behavior?

Combining multiple for loops into single iterator

c++ loops c++14