Skip to content
Snippets Groups Projects
Commit c99f5c10 authored by Michael Wedel's avatar Michael Wedel
Browse files

Refs #13537. Workaround for iterator_facade in VS

parent b726ccf1
No related merge requests found
......@@ -136,6 +136,11 @@ public:
/// Returns a const reference to the currently pointed at HKL.
inline const Kernel::V3D &dereference() const { return m_hkl; }
/// Required for compilation in VS. Forward iterator can not be used
/// that way, so the implementation does nothing.
inline void advance(difference_type) {}
inline void decrement() {}
int m_h, m_k, m_l;
Kernel::V3D m_hkl;
......
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