Skip to content

Commit

Permalink
Committing clang-format changes
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jun 16, 2023
1 parent 543ed8e commit 7a3dff8
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
3 changes: 2 additions & 1 deletion c++/src/H5Attribute.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,8 @@ Attribute::~Attribute()

//--------------------------------------------------------------------------
// Function: Copy assignment operator
Attribute & Attribute::operator= (const Attribute &other)
Attribute &
Attribute::operator=(const Attribute &other)
{
if (&other != this) {
}
Expand Down
2 changes: 1 addition & 1 deletion c++/src/H5Attribute.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class H5_DLLCPP Attribute : public AbstractDs, public H5Location {
virtual ~Attribute() override;

// Copy assignment operator.
Attribute & operator= (const Attribute &other);
Attribute &operator=(const Attribute &other);

#ifndef DOXYGEN_SHOULD_SKIP_THIS
protected:
Expand Down
2 changes: 0 additions & 2 deletions c++/src/H5Exception.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,6 @@ ReferenceException::ReferenceException(const H5std_string &func, const H5std_str
{
}


//--------------------------------------------------------------------------
// Subclass: LibraryIException
// Programmer Binh-Minh Ribler - 2000
Expand Down Expand Up @@ -599,7 +598,6 @@ LocationException::LocationException(const H5std_string &func, const H5std_strin
{
}


//--------------------------------------------------------------------------
// Subclass: IdComponentException
// Programmer Binh-Minh Ribler - 2000
Expand Down
3 changes: 2 additions & 1 deletion c++/src/H5Group.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,8 @@ Group::~Group()

//--------------------------------------------------------------------------
// Function: Copy assignment operator
Group & Group::operator= (const Group &other)
Group &
Group::operator=(const Group &other)
{
if (&other != this) {
}
Expand Down
2 changes: 1 addition & 1 deletion c++/src/H5Group.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class H5_DLLCPP Group : public H5Object, public CommonFG {
virtual ~Group() override;

// Copy assignment operator.
Group & operator= (const Group &other);
Group &operator=(const Group &other);

// Creates a copy of an existing group using its id.
Group(const hid_t group_id);
Expand Down

0 comments on commit 7a3dff8

Please sign in to comment.