Skip to content
Snippets Groups Projects
Commit 75a6070f authored by Edward Brown's avatar Edward Brown
Browse files

Re #22048: Applied fixes to Framework/HistogramData.

parent d798b706
No related branches found
No related tags found
No related merge requests found
...@@ -169,8 +169,8 @@ public: ...@@ -169,8 +169,8 @@ public:
const double &back() const { return m_data.back(); } const double &back() const { return m_data.back(); }
// expose typedefs for the iterator types in the underlying container // expose typedefs for the iterator types in the underlying container
typedef std::vector<double>::iterator iterator; using iterator = std::vector<double>::iterator;
typedef std::vector<double>::const_iterator const_iterator; using const_iterator = std::vector<double>::const_iterator;
}; };
} // namespace detail } // namespace detail
......
...@@ -86,8 +86,8 @@ public: ...@@ -86,8 +86,8 @@ public:
} }
// expose typedefs for the iterator types in the underlying container // expose typedefs for the iterator types in the underlying container
typedef std::vector<double>::iterator iterator; using iterator = std::vector<double>::iterator;
typedef std::vector<double>::const_iterator const_iterator; using const_iterator = std::vector<double>::const_iterator;
protected: protected:
~Iterable() = default; ~Iterable() = default;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment