Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell authored and tmadlener committed May 2, 2024
1 parent 20991c9 commit 3371185
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/read_interface.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#ifndef PODIO_TESTS_READ_INTERFACE_H // NOLINT(llvm-header-guard): folder structure not suitable
#define PODIO_TESTS_READ_INTERFACE_H // NOLINT(llvm-header-guard): folder structure not suitable

#include "read_frame.h"

#include "podio/Reader.h"
Expand Down Expand Up @@ -80,3 +83,5 @@ int read_frames(podio::Reader& reader) {

return 0;
}

#endif // PODIO_TESTS_READ_INTERFACE_H
5 changes: 5 additions & 0 deletions tests/write_interface.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#ifndef PODIO_TESTS_WRITE_INTERFACE_H // NOLINT(llvm-header-guard): folder structure not suitable
#define PODIO_TESTS_WRITE_INTERFACE_H // NOLINT(llvm-header-guard): folder structure not suitable

#include "write_frame.h"

#include "podio/Writer.h"
Expand All @@ -14,3 +17,5 @@ void write_frames(podio::Writer& frameWriter) {
frameWriter.writeFrame(frame, "other_events");
}
}

#endif // PODIO_TESTS_WRITE_INTERFACE_H

0 comments on commit 3371185

Please sign in to comment.