zy-kkk opened a new pull request, #41140:
URL: https://github.com/apache/doris/pull/41140

   ```
   auto size = tablet->tablet_meta()->delete_bitmap().get_size();
   root.AddMember("size", size, root.GetAllocator());
   ```
   
   The compiler complains because there is an ambiguity in the call when 
passing size to the constructor of rapidjson::GenericValue. This is because the 
type of size (which may be size_t or unsigned long) is 64 bits on ARM64-based 
Macs (such as the M1 chip), and RapidJSON provides multiple possible matching 
constructors.
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to