react-native-bignumber icon indicating copy to clipboard operation
react-native-bignumber copied to clipboard

Xcode 15.3 build issue

Open r-variichuk opened this issue 1 year ago • 4 comments
trafficstars

Receive this error after Xcode update : No matching function for call to 'remove_if' in MGBigNumberHostObject.cpp

Screenshot 2024-03-06 at 14 46 59

r-variichuk avatar Mar 06 '24 12:03 r-variichuk

@mrousavy sorry for mentioning you, but this seems to be a blocker. I would appreciate if you can find some time to take a look. Thx in advance

r-variichuk avatar Mar 11 '24 09:03 r-variichuk

@r-variichuk patch it to be:

strRep.erase(remove_if(strRep.begin(), strRep.end(), isspace), strRep.end());

vinters768 avatar Mar 11 '24 14:03 vinters768

@r-variichuk patch it to be:

strRep.erase(remove_if(strRep.begin(), strRep.end(), isspace), strRep.end());

build issue has gone. Thx

r-variichuk avatar Mar 12 '24 10:03 r-variichuk

thank you @vinters768 - this fixed the issue for me!

ayush-leap avatar Mar 29 '24 15:03 ayush-leap