summaryrefslogtreecommitdiffstats
path: root/clang/test/SemaTemplate/instantiate-static-var.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Update for LLVM API change.Owen Anderson2009-07-271-1/+1
| | | | llvm-svn: 77267
* When instantiating a variable without an initializer, callDouglas Gregor2009-07-271-0/+22
| | | | | | ActOnUninitializedDecl. llvm-svn: 77211
* Implement template instantiation for static data members of classDouglas Gregor2009-03-251-0/+18
templates, including in-class initializers. For example: template<typename T, T Divisor> class X { public: static const T value = 10 / Divisor; }; instantiated with, e.g., X<int, 5>::value to get the value '2'. llvm-svn: 67715
OpenPOWER on IntegriCloud