From: Matthias Maier Date: Wed, 27 Jul 2022 21:45:16 +0000 (-0500) Subject: Fix a typo in deal.II/base/numbers.h X-Git-Tag: v9.5.0-rc1~1059^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F14162%2Fhead;p=dealii.git Fix a typo in deal.II/base/numbers.h The refactoring done in b1883d9cbf2dfa8452ebb109d580096453f7e10f introduced a typo that wasn't spotted by our CI. Fix this. --- diff --git a/include/deal.II/base/numbers.h b/include/deal.II/base/numbers.h index e3a5a00cf3..74d8976ee2 100644 --- a/include/deal.II/base/numbers.h +++ b/include/deal.II/base/numbers.h @@ -891,8 +891,8 @@ namespace numbers value_is_less_than(const adouble &value_1, const Number &value_2) { // Use the specialized definition for two ADOL-C taped types - return value_is_less_than(value_1, - ::internal::NumberType::value(value_2)); + return value_is_less_than( + value_1, dealii::internal::NumberType::value(value_2)); }