Skip to content

Commit

Permalink
Miscellaneous [#CLICKHOUSE-2].
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-milovidov committed Aug 20, 2017
1 parent 2fb7a34 commit fc409f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbms/src/Common/HashTable/HashTable.h
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ class HashTable :
}

auto & operator* () const { return ptr->getValue(); }
auto operator->() const { return &ptr->getValue(); }
auto * operator->() const { return &ptr->getValue(); }

auto getPtr() const { return ptr; }
size_t getHash() const { return ptr->getHash(*container); }
Expand Down

0 comments on commit fc409f6

Please sign in to comment.