Remove spurious semi-column

This commit is contained in:
Sylvain Pion 2007-03-18 13:21:11 +00:00
parent 5c523244df
commit c0cda13b6a
1 changed files with 3 additions and 3 deletions

View File

@ -12,8 +12,8 @@
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
//
// $URL:$
// $Id:$
// $URL$
// $Id$
//
//
// Author(s) : Michael Hemmer <hemmer@mpi-inf.mpg.de>
@ -66,7 +66,7 @@ public:
const Type& y ) const {
return x.gcd(y);
}
CGAL_IMPLICIT_INTEROPERABLE_BINARY_OPERATOR(int);
CGAL_IMPLICIT_INTEROPERABLE_BINARY_OPERATOR(int)
};
typedef INTERN_AST::Div_per_operator< Type > Div;