dillo-browser / dillo

Dillo, a multi-platform graphical web browser
https://dillo-browser.github.io/
GNU General Public License v3.0
548 stars 27 forks source link

Defaulted and deleted functions only available with ‘-std=c++11’ #217

Closed rodarima closed 1 month ago

rodarima commented 2 months ago

The = default is C++11:

container.hh:254:25: warning: defaulted and deleted functions only available with ‘-std=c++11’ or ‘-std=gnu++11’
  254 |       virtual ~Node() = default;
      |                         ^~~~~~~

Let's try to keep the std requirement at C++98.