From 6c106433e66329316dd01a2890b42164998fb80a Mon Sep 17 00:00:00 2001 From: helen-brooks <67463845+helen-brooks@users.noreply.github.com> Date: Thu, 17 Jun 2021 09:15:27 +0100 Subject: [PATCH] c++ style changes: use this-> for calling object's methods Co-authored-by: Paul Romano --- src/mesh.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mesh.cpp b/src/mesh.cpp index f9f50f95c4..a1818ed845 100644 --- a/src/mesh.cpp +++ b/src/mesh.cpp @@ -1584,13 +1584,13 @@ MOABMesh::MOABMesh(const std::string& filename) { MOABMesh::MOABMesh(std::shared_ptr external_mbi) { mbi_ = external_mbi; filename_ = "unknown (external file)"; - initialize(); + this->initialize(); } void MOABMesh::initialize() { // Create the MOAB interface and load data from file - create_interface(); + this->create_interface(); // Initialise MOAB error code moab::ErrorCode rval = moab::MB_SUCCESS;