Skip to content

Replace some macros with C++11/14 standard functionality

Michael Kuron requested to merge deprecated into master

!339 (merged) used the deprecated attribute too and it is much nicer than our old solution. Since C++14, we don't need compiler-specific hacks anymore and we can even include custom messages in the deprecation warning.

WALBERLA_PRAGMA was unused and could be replaced with C++11's _Pragma.

WALBERLA_OVERRIDE is now replaced by C++11's override.

Edited by Michael Kuron

Merge request reports