Skip to content

Commit

Permalink
Fix include guards to comply with clang-tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener committed Mar 22, 2023
1 parent 63ef95d commit db654dc
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions include/podio/detail/AssociationCollectionData.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef PODIO_ASSOCIATIONCOLLECTIONDATA_H
#define PODIO_ASSOCIATIONCOLLECTIONDATA_H
#ifndef PODIO_DETAIL_ASSOCIATIONCOLLECTIONDATA_H
#define PODIO_DETAIL_ASSOCIATIONCOLLECTIONDATA_H

#include "podio/detail/AssociationFwd.h"
#include "podio/detail/AssociationObj.h"
Expand Down Expand Up @@ -199,4 +199,4 @@ class AssociationCollectionData {

} // namespace podio

#endif // PODIO_ASSOCIATIONCOLLECTIONDATA_H
#endif // PODIO_DETAIL_ASSOCIATIONCOLLECTIONDATA_H
6 changes: 3 additions & 3 deletions include/podio/detail/AssociationFwd.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef PODIO_ASSOCIATIONFWD_H
#define PODIO_ASSOCIATIONFWD_H
#ifndef PODIO_DETAIL_ASSOCIATIONFWD_H
#define PODIO_DETAIL_ASSOCIATIONFWD_H

#include <algorithm>
#include <deque>
Expand Down Expand Up @@ -80,4 +80,4 @@ using AssociationMutableCollectionIterator = AssociationCollectionIteratorT<From

} // namespace podio

#endif // PODIO_ASSOCIATIONFWD_H
#endif // PODIO_DETAIL_ASSOCIATIONFWD_H
6 changes: 3 additions & 3 deletions include/podio/detail/AssociationObj.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef PODIO_ASSOCIATIONOBJ_H
#define PODIO_ASSOCIATIONOBJ_H
#ifndef PODIO_DETAIL_ASSOCIATIONOBJ_H
#define PODIO_DETAIL_ASSOCIATIONOBJ_H

#include "podio/detail/AssociationFwd.h"

Expand Down Expand Up @@ -58,4 +58,4 @@ class AssociationObj : public podio::ObjBase {

} // namespace podio

#endif // PODIO_ASSOCIATIONOBJ_H
#endif // PODIO_DETAIL_ASSOCIATIONOBJ_H
6 changes: 3 additions & 3 deletions include/podio/detail/AssociationSIOBlock.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef PODIO_ASSOCIATIONSIOBLOCK_H
#define PODIO_ASSOCIATIONSIOBLOCK_H
#ifndef PODIO_DETAIL_ASSOCIATIONSIOBLOCK_H
#define PODIO_DETAIL_ASSOCIATIONSIOBLOCK_H

#include "podio/detail/AssociationFwd.h"

Expand Down Expand Up @@ -90,4 +90,4 @@ class AssociationSIOBlock : public podio::SIOBlock {

} // namespace podio

#endif // PODIO_ASSOCIATIONSIOBLOCK_H
#endif // PODIO_DETAIL_ASSOCIATIONSIOBLOCK_H

0 comments on commit db654dc

Please sign in to comment.