Closed cyrstem closed 9 months ago
Hi, Sorry for the late answer. What's your OF version and what's your compiler+version ? To me it looks like it's coded in a too recent c++ version for your compiler.
hey its gcc --version gcc (GCC) 13.2.1
On OSX I have no issues compiling with either the old GCC or Clang that ship with OSX 10.12.
I'm wondering if it could be related to this, are you compiling using c++20 features ?
Maybe LinkedList.hpp
needs an update for recent c++ versions (which I don't yet have access to).
You could try replacing lines 59 & 60 with: (I'm not sure if that does delete the copy constructor correctly)
LinkedList( const LinkedList& ) = delete;
LinkedList& operator=(const LinkedList&) = delete;
i was having this issue compiling for of0.12 on popos (as described here and the fix suggested above by @Daandelange solved it for me - thanks!
Thanks for reporting back, I just updated the develop branch with the change ;)
im using the develop branch but i recently pull now its broken any ideas ??