Skip to content

Commit

Permalink
Refs #10061 fixing final warning
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnRHill committed Aug 29, 2014
1 parent 2af5b9b commit 21b7ea3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -96,7 +96,7 @@ namespace DataHandling
/// Parses the header values for the FITS file
bool parseHeader(FITSInfo &headerInfo);
/// Load data from a number of files into the workspace
void loadChunkOfBinsFromFile(Mantid::API::MatrixWorkspace_sptr &workspace, vector<vector<double> > &yVals, vector<vector<double> > &eVals, void *&bufferAny, MantidVecPtr &x, size_t spetraCount, int bitsPerPixel, long binChunkStartIndex);
void loadChunkOfBinsFromFile(Mantid::API::MatrixWorkspace_sptr &workspace, vector<vector<double> > &yVals, vector<vector<double> > &eVals, void *&bufferAny, MantidVecPtr &x, size_t spetraCount, int bitsPerPixel, size_t binChunkStartIndex);
/// Initialises a workspace with IDF and fills it with data
API::MatrixWorkspace_sptr initAndPopulateHistogramWorkspace();

Expand Down
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/DataHandling/src/LoadFITS.cpp
Expand Up @@ -317,7 +317,7 @@ namespace DataHandling
* @param bitsPerPixel Number of bits used to represent one data point
* @param binChunkStartIndex Index for the first file to be processed in this chunk
*/
void LoadFITS::loadChunkOfBinsFromFile(MatrixWorkspace_sptr &workspace, vector<vector<double> > &yVals, vector<vector<double> > &eVals, void *&bufferAny, MantidVecPtr &x, size_t spectraCount, int bitsPerPixel, long binChunkStartIndex)
void LoadFITS::loadChunkOfBinsFromFile(MatrixWorkspace_sptr &workspace, vector<vector<double> > &yVals, vector<vector<double> > &eVals, void *&bufferAny, MantidVecPtr &x, size_t spectraCount, int bitsPerPixel, size_t binChunkStartIndex)
{
size_t binsThisChunk = m_binChunkSize;
if((binChunkStartIndex + m_binChunkSize) > m_allHeaderInfo.size())
Expand Down

0 comments on commit 21b7ea3

Please sign in to comment.