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 Jul 28, 2023
1 parent 9ef6376 commit 6d3241b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion c++/src/H5Attribute.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,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
3 changes: 2 additions & 1 deletion c++/src/H5Group.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,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 6d3241b

Please sign in to comment.