From 936a3d07b799097fa7f59371564d9758a43b613b Mon Sep 17 00:00:00 2001 From: George Rhoten Date: Tue, 27 Feb 2007 10:22:52 +0000 Subject: [PATCH] ICU-5445 Fix some compiler warnings. X-SVN-Rev: 21137 --- icu4c/source/tools/ctestfw/unicode/uperf.h | 25 +++++++++++----------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/icu4c/source/tools/ctestfw/unicode/uperf.h b/icu4c/source/tools/ctestfw/unicode/uperf.h index ce4530be1d..5568f0e665 100644 --- a/icu4c/source/tools/ctestfw/unicode/uperf.h +++ b/icu4c/source/tools/ctestfw/unicode/uperf.h @@ -1,9 +1,8 @@ /* ********************************************************************** -* Copyright (c) 2002-2006, International Business Machines +* Copyright (c) 2002-2007, International Business Machines * Corporation and others. All Rights Reserved. ********************************************************************** -********************************************************************** */ #ifndef _UPERF_H #define _UPERF_H @@ -144,26 +143,26 @@ protected: virtual UBool callTest( UPerfTest& testToBeCalled, char* par ); - UBool verbose; - const char* sourceDir; - const char* fileName; + int32_t _argc; + const char** _argv; + const char * _addUsage; char* resolvedFileName; + UCHARBUF* ucharBuf; const char* encoding; UBool uselen; - int32_t iterations; - int32_t passes; - int32_t time; - const char * _addUsage; - const char** _argv; - int32_t _argc; + const char* fileName; + const char* sourceDir; int32_t _remainingArgc; ULine* lines; int32_t numLines; - UCHARBUF* ucharBuf; UBool line_mode; - UBool bulk_mode; UChar* buffer; int32_t bufferLen; + UBool verbose; + UBool bulk_mode; + int32_t passes; + int32_t iterations; + int32_t time; const char* locale; private: UPerfTest* caller;