Use this tag for anything related to C++14 variable templates.
Variable templates are a feature of C++ as of C++14. They allow variables to be declared as templates, just like functions and classes:
template<class T>
constexpr T pi = T(3.1415926535897932385);
template<class T>
T circular_area(T r) {
return pi<T> * r * r;
}