ICU-5808 Fix for UCONFIG_NO_FORMATTING

X-SVN-Rev: 22217
This commit is contained in:
George Rhoten 2007-07-31 07:12:45 +00:00
parent 57451916b9
commit 84e3cd3b3e
2 changed files with 8 additions and 2 deletions

View File

@ -24,8 +24,10 @@
******************************************************************************
*/
#include "unicode/putil.h"
#include "digitlst.h"
#if !UCONFIG_NO_FORMATTING
#include "unicode/putil.h"
#include "cstring.h"
#include "putilimp.h"
#include <stdlib.h>
@ -658,5 +660,6 @@ DigitList::isZero() const
}
U_NAMESPACE_END
#endif // #if !UCONFIG_NO_FORMATTING
//eof

View File

@ -24,8 +24,9 @@
#ifndef DIGITLST_H
#define DIGITLST_H
#include "unicode/utypes.h"
#include "unicode/uobject.h"
#if !UCONFIG_NO_FORMATTING
#include "unicode/decimfmt.h"
#include <float.h>
@ -259,6 +260,8 @@ DigitList::operator!=(const DigitList& other) const {
#endif
U_NAMESPACE_END
#endif // #if !UCONFIG_NO_FORMATTING
#endif // _DIGITLST
//eof