mreineck / ducc

Fork of https://gitlab.mpcdf.mpg.de/mtr/ducc to simplify external contributions
GNU General Public License v2.0
13 stars 12 forks source link

Fix CTAD warning. #17

Closed cantonios closed 1 year ago

cantonios commented 1 year ago

Without specifying the type explicitly, we get:

src/ducc0/infra/threading.cc:651:7: error: 'ScopedValueChanger' may not intend to support class template argument deduction [-Werror,-Wctad-maybe-unsupported]

The solutions are either to explicitly specify the tool (simply bool in this case), and/or add deduction guides. The former was easier for now, but we can certainly add deduction guides later if needed.