Remove const& for now (waiting for a better solution from Marc)

This commit is contained in:
Clement Jamin 2014-07-29 11:58:08 +02:00
parent 018929fecf
commit 3c8e50e1b2
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ template<class R_> struct Compute_cartesian_coordinate {
#ifdef CGAL_CXX11
typedef decltype(std::declval<const first_argument_type>()[0]) result_type;
#else
typedef RT const& result_type;
typedef RT result_type;
// RT const& doesn't work with some LA (Eigen2 for instance) so we
// should use plain RT or find a way to detect this.
#endif