[Quickfix-developers] parameter warnings
Brought to you by:
orenmnero
|
From: Sean K. <sea...@pi...> - 2006-02-01 15:48:54
|
Another minor issue I've come across when compiling with all warnings = are: /usr/local/include/quickfix/FieldConvertors.h:360: warning: unused = parameter ` bool calculateDays' /usr/local/include/quickfix/Field.h: In member function `FIX::FieldBase::FieldBase(int, const _STL::string&, bool)': /usr/local/include/quickfix/Field.h:53: warning: unused parameter `bool doCalculate' Basically the parameters are never used within the functions. To remove = the warnings, the parameters could either be removed from the funcs, or = the names just commented out, eg /* doCalculate */. --Sean |