From 551145b514900669ab799dc17a4f9ae23e31d377 Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Tue, 29 Jan 2019 10:58:02 +0100 Subject: [PATCH] modernize-use-nullptr --- include/deal.II/numerics/error_estimator.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/include/deal.II/numerics/error_estimator.h b/include/deal.II/numerics/error_estimator.h index ecb9786ffe..a9b3fa4a60 100644 --- a/include/deal.II/numerics/error_estimator.h +++ b/include/deal.II/numerics/error_estimator.h @@ -398,7 +398,7 @@ public: const std::vector &solutions, std::vector *> & errors, const ComponentMask & component_mask = ComponentMask(), - const Function * coefficients = 0, + const Function * coefficients = nullptr, const unsigned int n_threads = numbers::invalid_unsigned_int, const types::subdomain_id subdomain_id = numbers::invalid_subdomain_id, const types::material_id material_id = numbers::invalid_material_id, @@ -419,7 +419,7 @@ public: const std::vector &solutions, std::vector *> & errors, const ComponentMask & component_mask = ComponentMask(), - const Function * coefficients = 0, + const Function * coefficients = nullptr, const unsigned int n_threads = numbers::invalid_unsigned_int, const types::subdomain_id subdomain_id = numbers::invalid_subdomain_id, const types::material_id material_id = numbers::invalid_material_id, @@ -442,7 +442,7 @@ public: const InputVector & solution, Vector & error, const ComponentMask & component_mask = ComponentMask(), - const Function *coefficients = 0, + const Function *coefficients = nullptr, const unsigned int n_threads = numbers::invalid_unsigned_int, const types::subdomain_id subdomain_id = numbers::invalid_subdomain_id, const types::material_id material_id = numbers::invalid_material_id, @@ -487,7 +487,7 @@ public: const std::vector &solutions, std::vector *> & errors, const ComponentMask & component_mask = ComponentMask(), - const Function * coefficients = 0, + const Function * coefficients = nullptr, const unsigned int n_threads = numbers::invalid_unsigned_int, const types::subdomain_id subdomain_id = numbers::invalid_subdomain_id, const types::material_id material_id = numbers::invalid_material_id, @@ -686,7 +686,7 @@ public: const std::vector &solutions, std::vector *> & errors, const ComponentMask & component_mask = ComponentMask(), - const Function * coefficients = 0, + const Function * coefficients = nullptr, const unsigned int n_threads = numbers::invalid_unsigned_int, const types::subdomain_id subdomain_id = numbers::invalid_subdomain_id, const types::material_id material_id = numbers::invalid_material_id, @@ -707,7 +707,7 @@ public: const std::vector &solutions, std::vector *> & errors, const ComponentMask & component_mask = ComponentMask(), - const Function * coefficients = 0, + const Function * coefficients = nullptr, const unsigned int n_threads = numbers::invalid_unsigned_int, const types::subdomain_id subdomain_id = numbers::invalid_subdomain_id, const types::material_id material_id = numbers::invalid_material_id, @@ -730,7 +730,7 @@ public: const InputVector & solution, Vector & error, const ComponentMask & component_mask = ComponentMask(), - const Function *coefficients = 0, + const Function *coefficients = nullptr, const unsigned int n_threads = numbers::invalid_unsigned_int, const types::subdomain_id subdomain_id = numbers::invalid_subdomain_id, const types::material_id material_id = numbers::invalid_material_id, @@ -752,7 +752,7 @@ public: const InputVector & solution, Vector & error, const ComponentMask & component_mask = ComponentMask(), - const Function *coefficients = 0, + const Function *coefficients = nullptr, const unsigned int n_threads = numbers::invalid_unsigned_int, const types::subdomain_id subdomain_id = numbers::invalid_subdomain_id, const types::material_id material_id = numbers::invalid_material_id, @@ -775,7 +775,7 @@ public: const std::vector &solutions, std::vector *> & errors, const ComponentMask & component_mask = ComponentMask(), - const Function * coefficients = 0, + const Function * coefficients = nullptr, const unsigned int n_threads = numbers::invalid_unsigned_int, const types::subdomain_id subdomain_id = numbers::invalid_subdomain_id, const types::material_id material_id = numbers::invalid_material_id, @@ -797,7 +797,7 @@ public: const std::vector &solutions, std::vector *> & errors, const ComponentMask & component_mask = ComponentMask(), - const Function * coefficients = 0, + const Function * coefficients = nullptr, const unsigned int n_threads = numbers::invalid_unsigned_int, const types::subdomain_id subdomain_id = numbers::invalid_subdomain_id, const types::material_id material_id = numbers::invalid_material_id, -- 2.39.5