summaryrefslogtreecommitdiff
path: root/Build/source/libs/icu/icu-50.1/i18n/dcfmtimp.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/icu/icu-50.1/i18n/dcfmtimp.h')
-rw-r--r--Build/source/libs/icu/icu-50.1/i18n/dcfmtimp.h43
1 files changed, 0 insertions, 43 deletions
diff --git a/Build/source/libs/icu/icu-50.1/i18n/dcfmtimp.h b/Build/source/libs/icu/icu-50.1/i18n/dcfmtimp.h
deleted file mode 100644
index 87bf7983167..00000000000
--- a/Build/source/libs/icu/icu-50.1/i18n/dcfmtimp.h
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
-********************************************************************************
-* Copyright (C) 2012, International Business Machines
-* Corporation and others. All Rights Reserved.
-********************************************************************************/
-
-#ifndef DCFMTIMP_H
-#define DCFMTIMP_H
-
-#include "unicode/utypes.h"
-
-
-#if UCONFIG_FORMAT_FASTPATHS_49
-
-U_NAMESPACE_BEGIN
-
-enum EDecimalFormatFastpathStatus {
- kFastpathNO = 0,
- kFastpathYES = 1,
- kFastpathUNKNOWN = 2 /* not yet set */
-};
-
-/**
- * Must be smaller than DecimalFormat::fReserved
- */
-struct DecimalFormatInternal {
- uint8_t fFastpathStatus;
-
-#ifdef FMT_DEBUG
- void dump() const {
- printf("DecimalFormatInternal: fFastpathStatus=%c\n",
- "NY?"[(int)fFastpathStatus&3]);
- }
-#endif
-};
-
-
-
-U_NAMESPACE_END
-
-#endif
-
-#endif