summaryrefslogtreecommitdiff
path: root/public/include
diff options
context:
space:
mode:
authorHubert Figuiere <hub@figuiere.net>2010-07-04 20:48:33 -0700
committerHubert Figuiere <hub@figuiere.net>2010-07-04 20:48:33 -0700
commitca2743780d62766eb8e8cabbc1b4e0f1d0f4976e (patch)
tree320071e68cf9d5f9e64497dce64b9a63cdc0aa03 /public/include
parent2a5d5056967e979b5b0f4488be583ec3d655cb8c (diff)
Fix some warning about construction order from the XMP SDK update.
Diffstat (limited to 'public/include')
-rw-r--r--public/include/XMP_Const.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/public/include/XMP_Const.h b/public/include/XMP_Const.h
index f3223d8..8db5a04 100644
--- a/public/include/XMP_Const.h
+++ b/public/include/XMP_Const.h
@@ -230,8 +230,8 @@ struct XMP_DateTime {
XMP_Int32 nanoSecond;
#if __cplusplus
- XMP_DateTime() : year(0), month(0), day(0), hour(0), minute(0), second(0), nanoSecond(0),
- tzSign(0), tzHour(0), tzMinute(0), hasDate(false), hasTime(false), hasTimeZone(false) {};
+ XMP_DateTime() : year(0), month(0), day(0), hour(0), minute(0), second(0),
+ hasDate(false), hasTime(false), hasTimeZone(false), tzSign(0), tzHour(0), tzMinute(0), nanoSecond(0) {};
#endif
};