diff options
author | Andy McFadden <fadden@android.com> | 2009-06-04 15:43:57 -0700 |
---|---|---|
committer | Andy McFadden <fadden@android.com> | 2009-06-04 15:43:57 -0700 |
commit | 1ca715a1b723dd06152be5a6e4795b00b7bcb1ee (patch) | |
tree | a4cffd1616d3255bda573a7940da1841ceabe1c6 /icu/src/main/native | |
parent | c32e4556519d4cc8b34dbba2f3af66214456f077 (diff) | |
download | libcore-1ca715a1b723dd06152be5a6e4795b00b7bcb1ee.zip libcore-1ca715a1b723dd06152be5a6e4795b00b7bcb1ee.tar.gz libcore-1ca715a1b723dd06152be5a6e4795b00b7bcb1ee.tar.bz2 |
Move LOG_TAG above the includes.
This avoids a "LOG_TAG redefined" warning from log.h.
Diffstat (limited to 'icu/src/main/native')
-rw-r--r-- | icu/src/main/native/DecimalFormatInterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/icu/src/main/native/DecimalFormatInterface.cpp b/icu/src/main/native/DecimalFormatInterface.cpp index 6221826..7e37d6c 100644 --- a/icu/src/main/native/DecimalFormatInterface.cpp +++ b/icu/src/main/native/DecimalFormatInterface.cpp @@ -15,6 +15,7 @@ * the VM-specific behavior isolated in VMThread. */ +#define LOG_TAG "DecimalFormatInterface" #include "JNIHelp.h" #include "AndroidSystemNatives.h" #include "unicode/unum.h" @@ -28,7 +29,6 @@ #include <string.h> #include "cutils/log.h" -#define LOG_TAG "DecimalFormatInterface" static UBool icuError(JNIEnv *env, UErrorCode errorcode) { |