Skip to content

Commit

Permalink
Fix wrong member access
Browse files Browse the repository at this point in the history
  • Loading branch information
bfierz committed Oct 28, 2024
1 parent 586cda7 commit 0fb59c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/vcl.core/vcl/core/handle.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ namespace Vcl {
public:
bool operator==(Handle<T> h) const
{
return _dataIdx == h._dataIdx && _tag == h.tag;
return _dataIdx == h._dataIdx && _tag == h._tag;
}

bool operator<(Handle<T> h) const
Expand Down

0 comments on commit 0fb59c0

Please sign in to comment.