Skip to content

Commit

Permalink
Fixed some syntax stuff centos was throwing a tantrum about
Browse files Browse the repository at this point in the history
  • Loading branch information
Pherring04 committed Oct 10, 2024
1 parent a5a6ac3 commit d621d03
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion include/trick/DRAscii.hh
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ namespace Trick {
@code <my_drg> = trick.DRAscii("<in_name>") @endcode
@copydoc Trick::DataRecordGroup::DataRecordGroup(string in_name)
*/
DRAscii( std::string in_name, Trick::DR_Type dr_type = DR_Type::DR_Type_Ascii ) ;
DRAscii( std::string in_name, Trick::DR_Type dr_type = Trick::DR_Type::DR_Type_Ascii ) ;

/**
@copybrief Trick::DataRecordGroup::format_specific_header
Expand Down
2 changes: 1 addition & 1 deletion include/trick/DRBinary.hh
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ namespace Trick {
@code <my_drg> = trick.DRBinary("<in_name>") @endcode
@copydoc Trick::DataRecordGroup::DataRecordGroup(string in_name)
*/
DRBinary( std::string in_name, bool register_group = true, Trick::DR_Type dr_type = DR_Type::DR_Type_Binary ) ;
DRBinary( std::string in_name, bool register_group = true, Trick::DR_Type dr_type = Trick::DR_Type::DR_Type_Binary ) ;

/**
@copybrief Trick::DataRecordGroup::format_specific_header
Expand Down
2 changes: 1 addition & 1 deletion include/trick/DRHDF5.hh
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ GROUP "/" {
@code <my_drg> = trick.DRHDF5("<in_name>") @endcode
@copydoc Trick::DataRecordGroup::DataRecordGroup(string in_name)
*/
DRHDF5( std::string in_name, Trick::DR_Type dr_type = DR_Type::DR_Type_HDF5) ;
DRHDF5( std::string in_name, Trick::DR_Type dr_type = Trick::DR_Type::DR_Type_HDF5) ;

/**
@copybrief Trick::DataRecordGroup::format_specific_header
Expand Down
2 changes: 1 addition & 1 deletion include/trick/DataRecordGroup.hh
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ namespace Trick {
@brief Constructor that creates a new data recording group with the given @c in_name.
@param in_name - the new data recording group name
*/
DataRecordGroup( std::string in_name = "", Trick::DR_Type dr_type = DR_Type::DR_Type_None ) ;
DataRecordGroup( std::string in_name = "", Trick::DR_Type dr_type = Trick::DR_Type::DR_Type_None ) ;

~DataRecordGroup() ;

Expand Down

0 comments on commit d621d03

Please sign in to comment.