pnnl / SHAD

Scalable High-performance Algorithms and Data-structures
Apache License 2.0
122 stars 35 forks source link

shad uses operator== instead of Equal #196

Open NanmiaoWu opened 3 years ago

NanmiaoWu commented 3 years ago
NanmiaoWu commented 3 years ago

A workaround to this issue is: change IsNull() as follows:

  bool IsNull() const {
      return impl::HandleTrait<TargetSystemTag>::Equal(id_, impl::HandleTrait<TargetSystemTag>::NullValue());
  }