cleanup obsolete stuff

This commit is contained in:
Sylvain Pion 2003-07-21 15:20:19 +00:00
parent 5ebd6cf022
commit 40f199a4ec
1 changed files with 1 additions and 17 deletions

View File

@ -27,9 +27,8 @@
CGAL_BEGIN_NAMESPACE
#ifndef CGAL_CFG_NO_EXPLICIT_TEMPLATE_FUNCTION_ARGUMENT_SPECIFICATION
// A helper class:
// ---------------------
template <class Target, class Source>
struct converter
{
@ -43,21 +42,6 @@ Target
convert_to (const Source& s)
{ return converter<Target, Source>::do_it(s); }
/*
template <class Target, class Source>
inline
Target
convert_to( const Source& s)
{ return Target(s); }
*/
#endif // CGAL_CFG_NO_EXPLICIT_TEMPLATE_FUNCTION_ARGUMENT_SPECIFICATION
template <class Target, class Source>
inline
Target
convert_from_to( const Target& t, const Source& s)
{ return Target(s); }
CGAL_END_NAMESPACE
#endif // CGAL_MISC_H