[Quickfix-developers] QF 1.11.0 bug in DEFINE_FIELD_TIMECLASS_NUM C++ macro
Brought to you by:
orenmnero
|
From: Sean K. <sea...@pi...> - 2006-02-24 16:30:27
|
Hello All,
There is a minor bug in the DEFINE_FIELD_TIMECLASS_NUM macro in 1.11.0 =
(not sure if it was in previous versions as well).
Field.h - Line 474
NAME(const TYPE& value) : TOK##Field(NUM, value) {} \
should read:
NAME(const TYPE& value) : TOK##Field(NUM, value,false) {} \
This will carry through the default of showMilliseconds =3D false when a =
UtcTimeStampField is initialized with a value but milliseconds are not =
desired.
-S
|