Teuchos - Trilinos Tools Package  Version of the Day
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
The Teuchos namespace contains all of the classes, structs and enums used by Teuchos,...