blob: efb6b8edbde58667d7d4c43d4f4c8ad73bb3f436 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifdef __GNUG__
#pragma implementation
#endif
#include "<T>.Stack.h"
<T>Stack::~<T>Stack() {}
void <T>Stack::error(const char* msg)
{
(*lib_error_handler)("Stack", msg);
}
|