From f6bebf50d7199418cae280f78a031d9ec47b3877 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Wed, 25 Aug 2021 12:30:39 -0500 Subject: [PATCH] Add missing 'override' specifications in cell.h --- include/openmc/cell.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/openmc/cell.h b/include/openmc/cell.h index 5f6d33c974..6f9d879413 100644 --- a/include/openmc/cell.h +++ b/include/openmc/cell.h @@ -244,14 +244,14 @@ public: explicit CSGCell(pugi::xml_node cell_node); - bool contains(Position r, Direction u, int32_t on_surface) const; + bool contains(Position r, Direction u, int32_t on_surface) const override; std::pair distance( - Position r, Direction u, int32_t on_surface, Particle* p) const; + Position r, Direction u, int32_t on_surface, Particle* p) const override; void to_hdf5_inner(hid_t group_id) const override; - BoundingBox bounding_box() const; + BoundingBox bounding_box() const override; protected: bool contains_simple(Position r, Direction u, int32_t on_surface) const;