Skip to content
New issue

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

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

Already on GitHub? # to your account

Improve the deprecated message #558

Merged
merged 1 commit into from
Feb 15, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/podio/ROOTFrameReader.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include "podio/ROOTReader.h"

namespace podio {
using ROOTFrameReader [[deprecated("Will be removed in v1.0 switch podio::ROOTReader")]] = podio::ROOTReader;
using ROOTFrameReader [[deprecated("Will be removed in v1.0, switch to podio::ROOTReader")]] = podio::ROOTReader;
}

#endif // PODIO_ROOTFRAMEREADER_H
2 changes: 1 addition & 1 deletion include/podio/ROOTFrameWriter.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include "podio/ROOTWriter.h"

namespace podio {
using ROOTFrameWriter [[deprecated("Will be removed in v1.0 switch podio::ROOTWriter")]] = podio::ROOTWriter;
using ROOTFrameWriter [[deprecated("Will be removed in v1.0, switch to podio::ROOTWriter")]] = podio::ROOTWriter;
}

#endif // PODIO_ROOTFRAMEWRITER_H
2 changes: 1 addition & 1 deletion include/podio/SIOFrameReader.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include "podio/SIOReader.h"

namespace podio {
using SIOFrameReader [[deprecated("Will be removed in v1.0 switch podio::SIOReader")]] = podio::SIOReader;
using SIOFrameReader [[deprecated("Will be removed in v1.0, switch to podio::SIOReader")]] = podio::SIOReader;
}

#endif // PODIO_SIOFRAMEREADER_H
2 changes: 1 addition & 1 deletion include/podio/SIOFrameWriter.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include "podio/SIOWriter.h"

namespace podio {
using SIOFrameWriter [[deprecated("Will be removed in v1.0 switch podio::SIOWriter")]] = podio::SIOWriter;
using SIOFrameWriter [[deprecated("Will be removed in v1.0, switch to podio::SIOWriter")]] = podio::SIOWriter;
}

#endif // PODIO_SIOFRAMEWRITER_H
Loading