From 0ad526f6caeee277bf8516ef14058e41e2697574 Mon Sep 17 00:00:00 2001 From: Baptiste Mouginot Date: Mon, 18 May 2020 13:46:31 -0500 Subject: [PATCH] astyling DagMC.hpp --- src/dagmc/DagMC.hpp | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/dagmc/DagMC.hpp b/src/dagmc/DagMC.hpp index 92eb5c260e..ee3d8c1b8d 100644 --- a/src/dagmc/DagMC.hpp +++ b/src/dagmc/DagMC.hpp @@ -366,12 +366,15 @@ class DagMC { ErrorCode unpack_packed_string(Tag tag, EntityHandle eh, std::vector< std::string >& values); - std::vector& surf_handles() - {return entHandles[surfs_handle_idx];} - std::vector& vol_handles() - {return entHandles[vols_handle_idx];} - std::vector& group_handles() - {return entHandles[groups_handle_idx];} + std::vector& surf_handles() { + return entHandles[surfs_handle_idx]; + } + std::vector& vol_handles() { + return entHandles[vols_handle_idx]; + } + std::vector& group_handles() { + return entHandles[groups_handle_idx]; + } Tag get_tag(const char* name, int size, TagType store, DataType type, const void* def_value = NULL, bool create_if_missing = true);