src/hotspot/share/classfile/altHashing.hpp
changeset 47765 b7c7428eaab9
parent 47659 a8e9aff89f7b
child 53244 9807daeb47c4
--- a/src/hotspot/share/classfile/altHashing.hpp	Mon Oct 30 16:37:53 2017 +0100
+++ b/src/hotspot/share/classfile/altHashing.hpp	Tue Oct 31 11:55:09 2017 -0400
@@ -43,8 +43,8 @@
   static juint Integer_rotateLeft(juint i, int distance) {
     return (i << distance) | (i >> (32 - distance));
   }
-  static juint murmur3_32(const int* data, int len);
-  static juint murmur3_32(juint seed, const int* data, int len);
+  static juint murmur3_32(const jint* data, int len);
+  static juint murmur3_32(juint seed, const jint* data, int len);
 
  public:
   static juint compute_seed();