Skip to content

Commit

Permalink
Remove the last few deprecated accessors (#531)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener authored Dec 15, 2023
1 parent db4eec2 commit a35faaf
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions include/podio/GenericParameters.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ class ROOTNTupleWriter;
} // namespace podio
#endif

#define DEPR_NON_TEMPLATE \
[[deprecated("Non-templated access will be removed. Switch to templated access functionality")]]

namespace podio {

/// The types which are supported in the GenericParameters
Expand Down Expand Up @@ -172,18 +169,6 @@ class GenericParameters {
}
}

DEPR_NON_TEMPLATE const auto& getStringMap() const {
return getMap<std::string>();
}

DEPR_NON_TEMPLATE const auto& getFloatMap() const {
return getMap<float>();
}

DEPR_NON_TEMPLATE const auto& getIntMap() const {
return getMap<int>();
}

private:
/// Get a reference to the internal map for a given type (necessary for SIO)
template <typename T>
Expand Down

0 comments on commit a35faaf

Please sign in to comment.