Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

Can a C++14/17 project use binary libraries compiled using C++11 standard or does the source code need to be recompiled?

Applying a function to each element of a tuple

c++ tuples c++14

Strings in headers -- does this violate the ODR?

Comparing optimized builds with switch case and polymorphism

calling non constexpr function from constexpr allowed in some conditions

c++ c++14 constexpr

Template aliases conflicting types. g++ compiles successfully while clang fails

Switching back and forth between Array of Structures (AoS) and Structure of Arrays (SoA)

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