I turned on -Wall when compiling with clang on os x and discovered a few warnings. Fix those that we are responsible for and hide the rest.
/Users/svh/Documents/MantidProject/mantid/Code/Mantid/QtPropertyBrowser/src/qtvariantproperty.cpp:195:24: warning: private field 'q_ptr' is not used [-Wunused-private-field]
QtVariantProperty *q_ptr;
^
1 warning generated.
/Users/svh/Documents/MantidProject/mantid/Code/Mantid/Framework/DataHandling/inc/MantidDataHandling/DownloadInstrument.h:67:10: warning: private field 'm_isProxySet' is not used [-Wunused-private-field]
bool m_isProxySet;
^
1 warning generated.
/Users/svh/Documents/MantidProject/mantid/Code/Mantid/Framework/Algorithms/inc/MantidAlgorithms/PhaseQuadMuon.h:89:14: warning: private field 'm_res' is not used [-Wunused-private-field]
double m_res;
^
/Users/svh/Documents/MantidProject/mantid/Code/Mantid/Framework/Algorithms/inc/MantidAlgorithms/PhaseQuadMuon.h:97:12: warning: private field 'm_isDouble' is not used [-Wunused-private-field]
bool m_isDouble;
^
/Users/svh/Documents/MantidProject/mantid/Code/Mantid/Framework/Algorithms/inc/MantidAlgorithms/PhaseQuadMuon.h:99:14: warning: private field 'm_tau' is not used [-Wunused-private-field]
double m_tau;
^
/Users/svh/Documents/MantidProject/mantid/Code/Mantid/Framework/Algorithms/inc/MantidAlgorithms/PhaseQuadMuon.h:101:14: warning: private field 'm_w' is not used [-Wunused-private-field]
double m_w;
^
4 warnings generated.
/Users/svh/Documents/MantidProject/mantid/Code/Mantid/Framework/MDAlgorithms/inc/MantidMDAlgorithms/MDNormSXD.h:73:14: warning: private field 'm_nDims' is not used [-Wunused-private-field]
size_t m_nDims;
^
1 warning generated.
/Users/svh/Documents/MantidProject/mantid/Code/Mantid/MantidQt/CustomInterfaces/inc/MantidQtCustomInterfaces/SANSPlotSpecial.h:58:14: warning: private field 'm_parent' is not used [-Wunused-private-field]
QWidget* m_parent;
^
1 warning generated.
I turned on -Wall when compiling with clang on os x and discovered a few warnings. Fix those that we are responsible for and hide the rest.
/Users/svh/Documents/MantidProject/mantid/Code/Mantid/QtPropertyBrowser/src/qtvariantproperty.cpp:195:24: warning: private field 'q_ptr' is not used [-Wunused-private-field] QtVariantProperty *q_ptr; ^ 1 warning generated.
/Users/svh/Documents/MantidProject/mantid/Code/Mantid/Framework/DataHandling/inc/MantidDataHandling/DownloadInstrument.h:67:10: warning: private field 'm_isProxySet' is not used [-Wunused-private-field] bool m_isProxySet; ^ 1 warning generated.
/Users/svh/Documents/MantidProject/mantid/Code/Mantid/Framework/Algorithms/inc/MantidAlgorithms/PhaseQuadMuon.h:89:14: warning: private field 'm_res' is not used [-Wunused-private-field] double m_res; ^ /Users/svh/Documents/MantidProject/mantid/Code/Mantid/Framework/Algorithms/inc/MantidAlgorithms/PhaseQuadMuon.h:97:12: warning: private field 'm_isDouble' is not used [-Wunused-private-field] bool m_isDouble; ^ /Users/svh/Documents/MantidProject/mantid/Code/Mantid/Framework/Algorithms/inc/MantidAlgorithms/PhaseQuadMuon.h:99:14: warning: private field 'm_tau' is not used [-Wunused-private-field] double m_tau; ^ /Users/svh/Documents/MantidProject/mantid/Code/Mantid/Framework/Algorithms/inc/MantidAlgorithms/PhaseQuadMuon.h:101:14: warning: private field 'm_w' is not used [-Wunused-private-field] double m_w; ^ 4 warnings generated.
/Users/svh/Documents/MantidProject/mantid/Code/Mantid/Framework/MDAlgorithms/inc/MantidMDAlgorithms/MDNormSXD.h:73:14: warning: private field 'm_nDims' is not used [-Wunused-private-field] size_t m_nDims; ^ 1 warning generated.
/Users/svh/Documents/MantidProject/mantid/Code/Mantid/MantidQt/CustomInterfaces/inc/MantidQtCustomInterfaces/SANSPlotSpecial.h:58:14: warning: private field 'm_parent' is not used [-Wunused-private-field] QWidget* m_parent; ^ 1 warning generated.
/Users/svh/Documents/MantidProject/mantid/Code/Mantid/MantidPlot/src/TiledWindow.cpp:25:11: warning: unused variable 'normalWidth' [-Wunused-const-variable] const int normalWidth(0); ^ 1 warning generated.