Teuchos - Trilinos Tools Package  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Teuchos_stack.hpp
1 #ifndef TEUCHOS_STACK_HPP
2 #define TEUCHOS_STACK_HPP
3 
4 #include <stack>
5 
6 namespace Teuchos {
7 
8 template <typename T>
9 int size(std::stack<T> const& s) { return static_cast<int>(s.size()); }
10 
11 }
12 
13 #endif