Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

Why explicit std::move is needed when returning compatible type?

c++ c++11 c++14 move-semantics

Can we refer to member variables in a noexcept specification?

Decay types before passing to std::result_of

c++ templates c++11 c++14

How to elide copy when chaining?

c++ c++14 c++17

Auto deduced return types in forward declaration and mixing with old function syntax

Is mixing the old and new C++ function syntax in a class allowed?

c++ c++14 auto

Which enum values are undefined behavior in C++14, and why?

Why do template template parameters with constraints require stricter arguments?

Why doesn't a left fold expression invert the output of a right fold expression?

Specialize static constexpr data member

Const-correct accessor to vector of pointers without transfer of ownership in abstract interface

c++ c++14 api-design c++17

Can I legally reinterpret_cast between layout-compatible standard-layout types?

SFINAE and noexcept specifier

Passing function objects into std algorithms by reference

c++ algorithm c++11 stl c++14

Are public, in-class typedefs necessary in C++1y?

c++ c++11 c++14

Why member variables of a const object are not const

I am using c++14 or is my code, using structs, invalid?

Difference between boost optional and std::experimental optional assignment

Nesting Lambda functions - Performance implications

C++ struct declared in function visible in main

c++ c++14