2
0
mirror of https://github.com/boostorg/ublas.git synced 2026-02-24 04:22:12 +00:00

Commented location of remove_reference used to avoid Ref to Ref problems

This commit is contained in:
Michael Stevens
2004-08-11 08:07:37 +00:00
parent 157a7049ce
commit 55c3dcf623

View File

@@ -171,6 +171,7 @@ namespace boost { namespace numeric { namespace ublas {
template<class T1, class T2>
struct scalar_binary_assign_functor {
// Remove reference to avoid reference to reference problems
typedef typename type_traits<typename boost::remove_reference<T1>::type>::reference argument1_type;
typedef typename type_traits<T2>::const_reference argument2_type;
};