You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note the lack of template parameter on unique_ptr, which is the problem I'm facing.
This seems to be a difference in the latest version of the libc++ string header, causing bindgen to believe that the template parameters are unused. This used to be OK on prior OS X versions but I can't give specifics. The SDK causing trouble is the MacOS X 15 SDK.
Using bindgen HEAD revision 7cc2658.
input.hpp
contains:Command-line:
On a Linux machine, this generates (abridged):
On my current MacOS X machine, it gives me:
Note the lack of template parameter on
unique_ptr
, which is the problem I'm facing.This seems to be a difference in the latest version of the libc++ string header, causing
bindgen
to believe that the template parameters are unused. This used to be OK on prior OS X versions but I can't give specifics. The SDK causing trouble is the MacOS X 15 SDK.This is (probably) the root cause of google/autocxx#1396.
The text was updated successfully, but these errors were encountered: