Commit c3a3dd8b authored by Davis King's avatar Davis King

Changed code slightly to avoid a warning from gcc.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403183
parent 7831ae02
...@@ -372,11 +372,15 @@ namespace dlib ...@@ -372,11 +372,15 @@ namespace dlib
// ---------------------------------------------------------------------------------------- // ----------------------------------------------------------------------------------------
// I introduced this struct because it avoids an inane compiler warning from gcc
template <typename EXP>
struct is_not_ct_vector{ static const bool value = (EXP::NR != 1 && EXP::NC != 1); };
template < template <
typename EXP1, typename EXP1,
typename EXP2 typename EXP2
> >
typename enable_if_c<(EXP1::NR != 1 && EXP1::NC != 1) || (EXP2::NR != 1 && EXP2::NC != 1), typename enable_if_c<(is_not_ct_vector<EXP1>::value) || (is_not_ct_vector<EXP2>::value),
typename EXP1::type>::type typename EXP1::type>::type
dot ( dot (
const matrix_exp<EXP1>& m1, const matrix_exp<EXP1>& m1,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment