Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in templates

How to explicitly instantiate a template class that has a nested class with a friend function (C++)

c++ templates

In-class initialisers using = for class templates

Why is T const&& not a forwarding reference?

Is a specialization implicitly instantiated if it has already been implicitly instantiated?

Problem in GCC/C++17 with template template class

c++ templates gcc clang c++17

doxygen C++ inline template documentation

C++0x error with constexpr and returning template function

c++ templates c++11 constexpr

Is there a template/constexpr/C++11 way of replacing X-macros?

c++ templates c++11 constexpr

Unexpected overload called when function is called from variadic template instantiation

Optionally supporting initializer_list construction for templates maybe wrapping containers

loss of const volatile qualifiers

c++ templates volatile

Should a name found in a dependent base class hide a namespace name at the point of instantiation?

explicit call to variadic function template with empty parameter pack

Is it possible to write one function for std::string and std::wstring?

Alias template, partial specialization and the invalid parameter type void

Why can std::apply call a lambda but not the equivalent template function?

c++ templates lambda c++17

C++ concepts and template specialization; how to get a user-friendly compiler error

c++ templates c++-concepts

Why is the constructor in this C++ code ambiguous and how do I fix it?

Passing a function pointer from an array of function pointers as a template argument

c++ templates c++14

Requires-clause appears after template template parameter: is this legal grammar?