Skip to content

Commit

Permalink
Fixing up type here
Browse files Browse the repository at this point in the history
  • Loading branch information
msoos committed Jan 30, 2024
1 parent 29f0955 commit ba67bd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/component_types/difference_packed_component.h
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ DifferencePackedComponent::DifferencePackedComponent(vector<void *> &random,Comp
clhashkey_ = new uint64_t[random.capacity()];
for(int i=0; i<random.capacity();i++){
clhasher h(random[i]);
clhashkey_[i] = h((void*)data_, sizeof(unsigned)*data_size);
clhashkey_[i] = h((unsigned int*)data_, sizeof(unsigned)*data_size);
}
#endif
//TODO Remove
Expand Down

0 comments on commit ba67bd7

Please sign in to comment.