Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

Is round-trip through floating point always defined behavior if floating point range is bigger?

Variadic function pointer conversion

Why decltype expressions in return types have to be mangled in the symbol name?

c++ c++11 gcc c++14

Point of instantiation of a template class

Simultaneous parameter pack expansion error for unused template type definition

How do I delay the instantiation of a static data member in Visual C++?

Difference in performance: std::accumulate vs std::inner_product vs Loop

Does Boost provide an implementation of span for C++14?

c++ boost c++14

Can I use a variable template to declare another variable template?

std::is_constructible doesn't give the correct result [duplicate]

does passing lambda by value or reference make it easier to inline?

c++ lambda c++14

SFINAE constexpr with std::get

c++ c++14 constexpr sfinae

Generic utility to create aribtrary tuples of integral_constants

In C++, does the size of an enumeration have to be equal to the size of its underlying type?

c++ c++14 language-lawyer

Is the behaviour of std::get on rvalue-reference tuples dangerous?

Comparing against string literal not resolved at compile time

How to statically assert if enumeration constant is defined?

c++ c++14 static-assert

Return type deduction with an explicit prototype in C++

When use a function template instead of a generic lambda?

std::make_unique, anonymous namespace and ODR