Skip to content

Commit

Permalink
add missing include guard
Browse files Browse the repository at this point in the history
  • Loading branch information
hegner committed Jul 27, 2023
1 parent eaeb88d commit 5a19c89
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions python/templates/DatamodelDefinition.h.jinja2
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
// AUTOMATICALLY GENERATED FILE - DO NOT EDIT

#ifndef {{ package_name.upper() }}_DATAMODELDEFINITION_H
#define {{ package_name.upper() }}_DATAMODELDEFINITION_H

#include "podio/DatamodelRegistry.h"
#include "podio/SchemaEvolution.h"

Expand Down Expand Up @@ -64,3 +67,5 @@ namespace static_registration {
}

} // namespace {{ package_name }}::meta

#endif

0 comments on commit 5a19c89

Please sign in to comment.