From 4e762357ec0dbefb8334efa012bb8a6ff4b70c77 Mon Sep 17 00:00:00 2001 From: Vickie Lynch Date: Tue, 25 Mar 2014 13:46:04 -0400 Subject: [PATCH] Refs #9200 fix compiler warning --- Code/Mantid/Framework/Geometry/src/Crystal/ScalarUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/Mantid/Framework/Geometry/src/Crystal/ScalarUtils.cpp b/Code/Mantid/Framework/Geometry/src/Crystal/ScalarUtils.cpp index 5dc4f40fe948..96e800407c9c 100644 --- a/Code/Mantid/Framework/Geometry/src/Crystal/ScalarUtils.cpp +++ b/Code/Mantid/Framework/Geometry/src/Crystal/ScalarUtils.cpp @@ -209,7 +209,7 @@ std::vector ScalarUtils::GetCellsUBOnly( if ( rcell.GetCentering() == centering && rcell.GetCellType() == cell_type ) { - ConventionalCell cell_info( UB, i ); + ConventionalCell cell_info( UB, i ,allowPermutations); result.push_back( cell_info ); } }