Skip to content

Commit

Permalink
Re #5568. Fixed warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
mantid-roman committed Jul 24, 2012
1 parent cfe4403 commit f68505d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Expand Up @@ -68,7 +68,7 @@ class DLLExport LoadILL : public API::IDataFileChecker
/// Load the counts
void loadData(NeXus::NXData& dataGroup, API::MatrixWorkspace_sptr& workspace);
/// Load the instrument form the IDF
void LoadILL::runLoadInstrument(API::MatrixWorkspace_sptr workspace);
void runLoadInstrument(API::MatrixWorkspace_sptr workspace);

std::string m_filename; ///< The file to load
std::string m_instrumentName; ///< Name of the instrumen
Expand Down
2 changes: 0 additions & 2 deletions Code/Mantid/Framework/DataHandling/src/LoadILL.cpp
Expand Up @@ -89,8 +89,6 @@ void LoadILL::exec()
void LoadILL::loadData(NeXus::NXData& dataGroup, API::MatrixWorkspace_sptr& workspace)
{
NXInt data = dataGroup.openIntData();
int rank = data.rank();
//std::cerr << "Data: " << rank << ' ' << data.dim0() << ' ' << data.dim1() << ' ' << data.dim2() << std::endl;

size_t dim0 = static_cast<size_t>( data.dim0() );
size_t dim1 = static_cast<size_t>( data.dim1() );
Expand Down

0 comments on commit f68505d

Please sign in to comment.