Commits

C. Enrique Garcia Dabo authored 3078d0c5b06
Fix compiler warning

Fixes partially CAS-11988
No tags

code/mstransform/TVI/FreqAxisTVI.h

Modified
230 230 //////////////////////////////////////////////////////////////////////////
231 231 // FreqAxisTransformEngine2 class
232 232 //////////////////////////////////////////////////////////////////////////
233 233
234 234 template<class T> class FreqAxisTransformEngine2
235 235 {
236 236
237 237 public:
238 238
239 239 FreqAxisTransformEngine2(DataCubeMap *inputData,DataCubeMap *outputData) :
240 - debug_p(false), inputData_p(inputData), outputData_p(outputData),
241 - rowIndex_p(0), corrIndex_p(0)
240 + debug_p(false), rowIndex_p(0), corrIndex_p(0),
241 + inputData_p(inputData), outputData_p(outputData)
242 242 {
243 243 }
244 244
245 245 void setRowIndex(casacore::uInt row)
246 246 {
247 247 rowIndex_p = row;
248 248 inputData_p->setMatrixIndex(row);
249 249 outputData_p->setMatrixIndex(row);
250 250
251 251 return;

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut