Removed several spurious ";" to quiet warnings

[SVN r14577]
This commit is contained in:
Beman Dawes
2002-07-23 20:47:35 +00:00
parent 56c052de56
commit 053c1fb45f

View File

@ -29,16 +29,16 @@ template<> foo<int>::~foo();
template<> int foo<int>::bar(); template<> int foo<int>::bar();
// provide defaults: // provide defaults:
template<class T> foo<T>::foo(){}; template<class T> foo<T>::foo(){}
template<class T> foo<T>::foo(const T&){}; template<class T> foo<T>::foo(const T&){}
template<class T> foo<T>::~foo(){}; template<class T> foo<T>::~foo(){}
template<class T> int foo<T>::bar(){ return 0; }; template<class T> int foo<T>::bar(){ return 0; }
// provide defs: // provide defs:
template<> foo<int>::foo(){}; template<> foo<int>::foo(){}
template<> foo<int>::foo(const int&){}; template<> foo<int>::foo(const int&){}
template<> foo<int>::~foo(){}; template<> foo<int>::~foo(){}
template<> int foo<int>::bar(){ return 1; }; template<> int foo<int>::bar(){ return 1; }
int test() int test()