Skip to content

Commit

Permalink
Refs #9432. Changed constructor of MillerIndices
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Wedel committed May 9, 2014
1 parent a8e8f8d commit 55aab4d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
Expand Up @@ -38,8 +38,7 @@ namespace Poldi {

class MANTID_SINQ_DLL MillerIndices {
public:
MillerIndices();
MillerIndices(int h, int k, int l);
MillerIndices(int h = 0, int k = 0, int l = 0);
MillerIndices(std::vector<int> hkl);
~MillerIndices() {}

Expand Down
Expand Up @@ -6,11 +6,6 @@
namespace Mantid {
namespace Poldi {

MillerIndices::MillerIndices() :
MillerIndices(0, 0, 0)
{
}

MillerIndices::MillerIndices(int h, int k, int l) :
m_h(h),
m_k(k),
Expand Down

0 comments on commit 55aab4d

Please sign in to comment.