Remove trailing whitespace.

This commit is contained in:
Marc Glisse 2014-05-07 19:05:53 +02:00
parent 5c85856e14
commit fc4e4212f2
8 changed files with 9 additions and 9 deletions

View File

@ -14,7 +14,7 @@
//
// $URL$
// $Id$
//
//
//
// Author(s) : Sylvain Pion

View File

@ -90,7 +90,7 @@ public:
BOOST_PP_REPEAT_FROM_TO(1,11,CODE,_)
#undef CODE
#endif
//TODO: if OVBase returns a reference to a base vector, cast it to a

View File

@ -105,7 +105,7 @@ public:
BOOST_PP_REPEAT_FROM_TO(1,11,CODE,_)
#undef CODE
// this one should be implicit
Point_d(Origin const& o)
: Rep(CPBase()(o)) {}

View File

@ -93,7 +93,7 @@ public:
BOOST_PP_REPEAT_FROM_TO(1,11,CODE,_)
#undef CODE
#endif
//TODO: if CSEBase returns a reference to a base point, cast it to a

View File

@ -90,7 +90,7 @@ public:
BOOST_PP_REPEAT_FROM_TO(1,11,CODE,_)
#undef CODE
#endif
//TODO: if COSBase returns a reference to a base point, cast it to a

View File

@ -101,7 +101,7 @@ public:
BOOST_PP_REPEAT_FROM_TO(1,11,CODE,_)
#undef CODE
// this one should be implicit
Vector_d(Null_vector const& v)
: Rep(CVBase()(v)) {}

View File

@ -437,7 +437,7 @@ template<class R_> struct Linear_base : private Store_kernel<R_> {
Matrix b = R::LA::basis(CGAL_MOVE(m));
for(int i=0; i < R::LA::columns(b); ++i){
//*o++ = Vector(b.col(i));
typedef
typedef
#ifdef CGAL_CXX11
decltype(std::declval<const Matrix>()(0,0))
#else

View File

@ -49,8 +49,8 @@ struct Has_type_different_from <T, No, true>
// forget the first argument. Useful to make something dependant
// (and thus usable in SFINAE), although that's not a great design.
template<class A,class B> struct Second_arg {
typedef B type;
};
typedef B type;
};
// like std::forward, except for basic types where it does a cast, to
// avoid issues with narrowing conversions