summaryrefslogtreecommitdiff
path: root/xfa
diff options
context:
space:
mode:
authorweili <weili@chromium.org>2016-04-13 10:26:53 -0700
committerCommit bot <commit-bot@chromium.org>2016-04-13 10:26:53 -0700
commit65ffa4a4ee599194118a0ddf3c26fc3674120b4a (patch)
tree2842a460a0f952f39db202314fa25a0a9f677d4d /xfa
parenteb9cf677ca1bfd9431e43804b5524a1cf9bd9a8f (diff)
downloadpdfium-65ffa4a4ee599194118a0ddf3c26fc3674120b4a.tar.xz
Re-enable warning 4701 for GN build and some cleanup
Clean up three 4701 warnings (use potientially uninitialized variable) which are the only ones left; Re-enable warning 4701 for GN build; Remove an unused data structure; BUG=pdfium:29 Review URL: https://codereview.chromium.org/1885093002
Diffstat (limited to 'xfa')
-rw-r--r--xfa/fgas/localization/fgas_datetime.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/xfa/fgas/localization/fgas_datetime.h b/xfa/fgas/localization/fgas_datetime.h
index df2989fc58..7c8f111bfc 100644
--- a/xfa/fgas/localization/fgas_datetime.h
+++ b/xfa/fgas/localization/fgas_datetime.h
@@ -205,37 +205,6 @@ struct FX_DATETIME {
} Time;
};
-struct FX_DATETIMEZONE {
- union {
- struct {
- union {
- struct {
- int32_t year;
- uint8_t month;
- uint8_t day;
- };
- FX_DATE date;
- };
- union {
- struct {
- uint8_t hour;
- uint8_t minute;
- uint8_t second;
- uint16_t millisecond;
- };
- FX_TIME time;
- };
- };
- FX_DATETIME dt;
- };
- union {
- struct {
- int8_t tzHour;
- uint8_t tzMinute;
- };
- FX_TIMEZONE tz;
- };
-};
#if _FX_OS_ != _FX_ANDROID_
#pragma pack(pop)
#endif