Skip to content

Commit

Permalink
Improve the deprecated message (#558)
Browse files Browse the repository at this point in the history
Co-authored-by: jmcarcell <[email protected]>
  • Loading branch information
jmcarcell and jmcarcell authored Feb 15, 2024
1 parent 578bfee commit 4c9aa6a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
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

0 comments on commit 4c9aa6a

Please sign in to comment.