Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

Can default function arguments "fill in" for expanded parameter packs?

No <optional> in MS Visual Studio 2013 - what to do?

Can't assign a `std::unique_ptr` to a base class in clang when using an alias template

c++ clang c++14 clang++

How to memset an anonymous union with 0

Could it be possible to have types with move operations that throw in containers?

c++ c++11 stl c++14 stdmove

Create a type list combination of types in C++

Is it possible to have mutually referential C++ templates?

c++ templates c++14

How to `std::bind()` a standard library algorithm?

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

constexpr non-static member function with non-constexpr constructor (gcc,clang differ)

c++ gcc clang c++14 constexpr

Zipping an `std::tuple` and variadic arguments

c++ condition variable notification not working as expected

C++1y/14: Error handling in constexpr functions?

c++ c++14

Why is parameter not a constant expression?

c++ gcc c++14

How to compare a template template with a template instance?

What's the shortest path in C++11 (or newer) to create an RAII wrapper without having to write a new class?

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

Are C++ abstract classes incomplete types?

c++ language-lawyer c++14

Is there any difference with undefined behaviour between iterator and scalar object?

move constructor for std::runtime_error

Why can't the type of my class-static auto function be deduced within the class scope?

c++ c++14

How to define is_iterator type trait?