mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-29 06:35:48 -04:00
c++ style changes: use this-> for calling object's methods
Co-authored-by: Paul Romano <paul.k.romano@gmail.com>
This commit is contained in:
parent
130724e3f7
commit
6c106433e6
1 changed files with 2 additions and 2 deletions
|
|
@ -1584,13 +1584,13 @@ MOABMesh::MOABMesh(const std::string& filename) {
|
|||
MOABMesh::MOABMesh(std::shared_ptr<moab::Interface> 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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue