wakensky / cityhash

Automatically exported from code.google.com/p/cityhash
MIT License
1 stars 0 forks source link

UnsignedLongs.join error #8

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
UnsignedLongs.join does not treat the first long from its arguments as unsigned.

builder.append(array[0]);
for (int i = 1; i < array.length; i++) {
  builder.append(separator).append(toString(array[i]));
}

where it should be builder.append(toString(array[0])).

Original issue reported on code.google.com by wasserman.louis on 9 Apr 2012 at 10:37

GoogleCodeExporter commented 9 years ago
Oh crap wrong Google Code site, I am a n00b.

Original comment by wasserman.louis on 9 Apr 2012 at 10:38

GoogleCodeExporter commented 9 years ago

Original comment by gp...@google.com on 3 Oct 2012 at 5:01