qitab / cl-protobufs

Common Lisp protocol buffer implementation.
MIT License
84 stars 17 forks source link

Fixed issue where string-keyed maps used wrong test function #296

Closed bkuehnert closed 3 years ago

bkuehnert commented 3 years ago

Proto map types use #'eq as a test function for all key types except strings, and use #'equal for strings. The deserialization code was using the default, #'eq, for all types. This fixes that.