Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add header guards for DYTThrObject.h and Serializable.h #29086

Merged
merged 1 commit into from Mar 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions CondFormats/RecoMuonObjects/interface/DYTThrObject.h
@@ -1,3 +1,6 @@
#ifndef CondFormats_RecoMuonObjects_DYTThrObject_h
#define CondFormats_RecoMuonObjects_DYTThrObject_h

#include "DataFormats/DetId/interface/DetId.h"
#include <vector>
#include "CondFormats/Serialization/interface/Serializable.h"
Expand All @@ -17,3 +20,4 @@ class DYTThrObject {

COND_SERIALIZABLE;
};
#endif
4 changes: 3 additions & 1 deletion CondFormats/Serialization/interface/Serializable.h
@@ -1,4 +1,5 @@
#pragma once
#ifndef CondFormats_Serialization_Serializable_h
#define CondFormats_Serialization_Serializable_h

#if defined(__GCCXML__)

Expand Down Expand Up @@ -62,3 +63,4 @@ private: \
#define COND_TRANSIENT

#endif /* !defined(__GCCXML__) */
#endif