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

Refs #14023. Correct type for m_hkl.

parent 9dbbc939
No related branches found
No related tags found
No related merge requests found
...@@ -61,7 +61,7 @@ V3D HKLGenerator::getEndHKL() const { ...@@ -61,7 +61,7 @@ V3D HKLGenerator::getEndHKL() const {
/// Default constructor, requirement from boost::iterator_facade /// Default constructor, requirement from boost::iterator_facade
HKLGenerator::const_iterator::const_iterator() HKLGenerator::const_iterator::const_iterator()
: m_h(0), m_k(0), m_l(0), m_hkl(0), m_hMin(0), m_hMax(0), m_kMin(0), : m_h(0), m_k(0), m_l(0), m_hkl(V3D(0, 0, 0)), m_hMin(0), m_hMax(0), m_kMin(0),
m_kMax(0), m_lMin(0), m_lMax(0) {} m_kMax(0), m_lMin(0), m_lMax(0) {}
/// Return an iterator with min = max = current. /// Return an iterator with min = max = current.
......
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