include/Dictionary.h
changeset 3 8e3ae153e2c9
parent 0 31a43d94cc26
     1.1 --- a/include/Dictionary.h	Sun Sep 20 15:14:12 2009 -0700
     1.2 +++ b/include/Dictionary.h	Thu Sep 24 10:28:50 2009 -0700
     1.3 @@ -24,6 +24,7 @@
     1.4          explicit Key (const Blob &b)                    :Blob(b), hash(computeHash(b)) { }
     1.5          Key (const Blob &b, HashCode h)                 :Blob(b), hash(h) { }
     1.6          Key (const char *str)                           :Blob(str), hash(computeHash(*this)) { }
     1.7 +        Key (const void *bytes, uint32_t len)           :Blob(bytes,len), hash(computeHash(*this)) { }
     1.8          Key (const void *b, uint32_t len, HashCode h)   :Blob(b,len), hash(h) { }
     1.9  
    1.10          static HashCode computeHash (Blob);