projects
/
libcds.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b2912f5
)
fixed an error in less() predicate
author
khizmax
<libcds.dev@gmail.com>
Sun, 6 Sep 2015 06:03:35 +0000
(09:03 +0300)
committer
khizmax
<libcds.dev@gmail.com>
Sun, 6 Sep 2015 06:03:35 +0000
(09:03 +0300)
tests/hashing/hash_func.h
patch
|
blob
|
history
diff --git
a/tests/hashing/hash_func.h
b/tests/hashing/hash_func.h
index cbef26dfac66fdf731d64c7cc57950f98a36814a..4acdeff86d7652e8c9f681cdbda450a70b0959f8 100644
(file)
--- a/
tests/hashing/hash_func.h
+++ b/
tests/hashing/hash_func.h
@@
-126,7
+126,7
@@
namespace hashing {
{
if ( lhs.first != rhs.first )
return lhs.second < rhs.second;
- return lhs.first < rhs.
second
;
+ return lhs.first < rhs.
first
;
}
};
};