qitab / cl-protobufs

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

Update ABCL reader macros due to ABCL load bug. #236

Closed copybara-service[bot] closed 4 years ago

copybara-service[bot] commented 4 years ago

Update ABCL reader macros due to ABCL load bug.

The ABCL reader is making two copies of the message descriptor when it's reading a previously compiled proto message file that has an alias. This works since the two message descriptors are identical, but it's not optimal as it makes two different objects. It still functionally works.