Skip to content
Snippets Groups Projects
Commit 1921e4b3 authored by Van Herck, Walter's avatar Van Herck, Walter
Browse files

Fixed build errors

parent 01b5d614
No related branches found
No related tags found
No related merge requests found
...@@ -41,7 +41,7 @@ public: ...@@ -41,7 +41,7 @@ public:
const_iterator end() const { return m_pointers.end(); } const_iterator end() const { return m_pointers.end(); }
T *back() { return m_pointers.back(); } T *back() { return m_pointers.back(); }
T *const back() const { return m_pointers.back(); } const T *back() const { return m_pointers.back(); }
void clear(); void clear();
private: private:
std::vector<T *> m_pointers; std::vector<T *> m_pointers;
......
#include "AxisBin.h" #include "AxisBin.h"
#include "Numeric.h" #include "Numeric.h"
#include "Exceptions.h" #include "Exceptions.h"
#include <algorithm>
AxisBin::AxisBin(std::string name) AxisBin::AxisBin(std::string name)
: IAxis(name) : IAxis(name)
......
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