Skip to content

Commit

Permalink
refs #4201 Fixing Unix error
Browse files Browse the repository at this point in the history
  • Loading branch information
abuts committed Jan 9, 2012
1 parent 9ed41bd commit e1934d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ class ConvertToMDEvensEventWS: public IConvertToMDEventsMethods
{
/// shalow class which is invoked from processQND procedure and describes the transformation from workspace coordinates to target coordinates
/// presumably will be completely inlined
template<Q_state Q, AnalMode MODE, CnvrtUnits CONV,XCoordType XTYPE>
template<Q_state QX, AnalMode MODEX, CnvrtUnits CONV,XCoordType XTYPE>
friend struct COORD_TRANSFORMER;
// the instanciation of the class which does the transformation itself
COORD_TRANSFORMER<Q,MODE,ConvFromTOF,Axis> trn;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class ConvertToMDEvensHistoWS: public IConvertToMDEventsMethods
// the instanciation of the class which does the transformation itself
COORD_TRANSFORMER<Q,MODE,CONV,Histohram> trn;
// not yet parallel
virtual size_t conversionChunk(size_t job_ID){return 0;}
virtual size_t conversionChunk(size_t job_ID){UNUSED_ARG(job_ID); return 0;}
public:
size_t setUPConversion(Mantid::API::MatrixWorkspace_sptr pWS2D, const PreprocessedDetectors &detLoc,
const MDEvents::MDWSDescription &WSD, boost::shared_ptr<MDEvents::MDEventWSWrapper> inWSWrapper)
Expand Down

0 comments on commit e1934d5

Please sign in to comment.