Merge pull request #12043 from acozzette/cherry-pick-fix-for-11996

Ensure VarintParseSlowArm{32,64} are exported with PROTOBUF_EXPORT
pull/12053/head
Adam Cozzette 2 years ago committed by GitHub
commit fac76b35bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/google/protobuf/parse_context.h

@ -617,7 +617,9 @@ inline const char* VarintParseSlow(const char* p, uint32_t res, uint64_t* out) {
}
#ifdef __aarch64__
PROTOBUF_EXPORT
const char* VarintParseSlowArm64(const char* p, uint64_t* out, uint64_t first8);
PROTOBUF_EXPORT
const char* VarintParseSlowArm32(const char* p, uint32_t* out, uint64_t first8);
inline const char* VarintParseSlowArm(const char* p, uint32_t* out,

Loading…
Cancel
Save