Browse Source

Merge pull request #436 from debris/develop

fix for compiling under llvm
cl-refactor
Gav Wood 10 years ago
parent
commit
c79f48288a
  1. 2
      libdevcore/FixedHash.h

2
libdevcore/FixedHash.h

@ -158,7 +158,7 @@ public:
return ret;
}
template <unsigned P, unsigned M> inline FixedHash& shiftBloom(FixedHash<M> const& _h) { return (*this |= _h.nbloom<P, N>()); }
template <unsigned P, unsigned M> inline FixedHash& shiftBloom(FixedHash<M> const& _h) { return (*this |= _h.template nbloom<P, N>()); }
template <unsigned P, unsigned M> inline FixedHash<M> nbloom() const
{

Loading…
Cancel
Save