Re: macOS warning present in build 1735

2023-10-03 Thread Dr . Jürgen Sauermann
Hi Louis, thanks for reporting this. I believe that I managed to fix all compiler warnings. The linker warning: *ld: warning: -bind_at_load is deprecated on macOS* seems to be caused by different libtool versions. Maybe running *libtoolize* on your box in the top-level GNU APL directory fixe

Re: [EXTERNAL]Building GNU APL with clang

2023-10-03 Thread Elias Mårtenson
I'm pretty sure tge use of auto_ptr can be changed to unique_ptr here. I think I used auto_ptr because I wanted it to work on versions of C++ which didn't support unique_ptr. Den tis 3 okt. 2023 20:17Dr. Jürgen Sauermann skrev: > Hi, > > thank you all for discussing this. > > To address at least

Re: [EXTERNAL]Building GNU APL with clang

2023-10-03 Thread Dr . Jürgen Sauermann
Hi, thank you all for discussing this. To address at least some of the issues i have: 1, removed typeof() entirely, and 2. replaced *std::auto_ptr<>* with *std::unique_ptr<>*   as proposed on the internet. I am not entirely sure about 2. though. It was only used twice in  emacs_mode and once i