Skip to content
Snippets Groups Projects
Commit 2b897037 authored by Jan Trávníček's avatar Jan Trávníček
Browse files

make virtual_integral_iterator compatible with c++ standard library

parent 4e971ee2
No related branches found
No related tags found
1 merge request!95Many clang-tidy fixes
......@@ -297,6 +297,16 @@ class virtual_pointer_to_integer {
IntegralType m_data;
 
public:
typedef IntegralType value_type;
typedef std::ptrdiff_t difference_type;
typedef IntegralType * pointer;
typedef IntegralType reference;
typedef std::bidirectional_iterator_tag iterator_category;
/**
* \brief
* Constructor of the virtual pointer class.
......
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