BRAINSia / BRAINSTools

A suite of tools for medical image processing focused on brain analysis
http://brainsia.github.io/BRAINSTools/
Apache License 2.0
111 stars 96 forks source link

STYLE: Replaced default bodies of special member functions with `- default;` #510

Closed kian-weimer closed 3 years ago

kian-weimer commented 3 years ago

The explicitly defaulted function declarations enable more opportunities in optimization, because the compiler might treat explicitly defaulted functions as trivial. This implements the modernize-use-equals-default clang-tidy check. -"Use '= default' to define a trivial destructor"