Skip to content

Commit

Permalink
Corrected signature in friend declaration of standard vector variant …
Browse files Browse the repository at this point in the history
…of assign
  • Loading branch information
sei-smcmillan committed Oct 4, 2018
1 parent e060cee commit 39b3422
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions src/graphblas/ComplementView.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -478,21 +478,22 @@ namespace GraphBLAS
//--------------------------------------------------------------------

// 4.3.7.1: assign - standard vector variant
template<typename WVectorT,
template<typename WScalarT,
typename MaskT,
typename AccumT,
typename UVectorT,
typename SequenceT,
typename std::enable_if<
std::is_same<vector_tag,
typename UVectorT::tag_type>::value,
int>::type>
friend inline void assign(WVectorT &w,
MaskT const &mask,
AccumT accum,
UVectorT const &u,
SequenceT const &indices,
bool replace_flag);
int>::type,
typename ...WTags>
friend inline void assign(Vector<WScalarT, WTags...> &w,
MaskT const &mask,
AccumT accum,
UVectorT const &u,
SequenceT const &indices,
bool replace_flag);

// 4.3.7.3: assign - column variant
template<typename CScalarT,
Expand Down

0 comments on commit 39b3422

Please sign in to comment.