RE: [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 17:11:29
|
Please ignore this post. Turns out this wasn't the issue.
-----Original Message-----
From: qui...@li... =
[mailto:qui...@li...]On Behalf Of =
Sean Kirkpatrick
Sent: Friday, February 24, 2006 11:30 AM
To: qui...@li...
Subject: [Quickfix-developers] QF 1.11.0 bug in =
DEFINE_FIELD_TIMECLASS_NUM C++ macro
Hello All,=20
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=20
NAME(const TYPE& value) : TOK##Field(NUM, value) {} \=20
should read:=20
NAME(const TYPE& value) : TOK##Field(NUM, value,false) {} \=20
This will carry through the default of showMilliseconds =3D false when a =
UtcTimeStampField is initialized with a value but milliseconds are not =
desired.
-S=20
|