mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-14 09:21:03 +00:00
ICU-13177 add 'using namespace icu' where needed for build with -DU_USING_ICU_NAMESPACE=0
X-SVN-Rev: 40485
This commit is contained in:
parent
6b0ef1848d
commit
511ebeaa92
10 changed files with 11 additions and 0 deletions
|
@ -7,6 +7,7 @@
|
|||
#include "unicode/utf16.h"
|
||||
|
||||
using namespace icu::number::impl;
|
||||
using namespace icu;
|
||||
|
||||
int32_t AffixUtils::estimateLength(const CharSequence &patternString, UErrorCode &status) {
|
||||
AffixPatternState state = STATE_BASE;
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
#include "uresimp.h"
|
||||
|
||||
using namespace icu::number::impl;
|
||||
using namespace icu;
|
||||
|
||||
namespace {
|
||||
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
#include "unicode/plurrule.h"
|
||||
|
||||
using namespace icu::number::impl;
|
||||
using namespace icu;
|
||||
|
||||
namespace {
|
||||
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
#include "number_decimalquantity.h"
|
||||
#include "number_formatimpl.h"
|
||||
|
||||
using namespace icu;
|
||||
using namespace icu::number;
|
||||
using namespace icu::number::impl;
|
||||
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
#include "number_scientific.h"
|
||||
#include "number_compact.h"
|
||||
|
||||
using namespace icu;
|
||||
using namespace icu::number::impl;
|
||||
|
||||
namespace {
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
#include <algorithm>
|
||||
#include "cstring.h"
|
||||
|
||||
using namespace icu;
|
||||
using namespace icu::number::impl;
|
||||
|
||||
namespace {
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
#include "ucln_in.h"
|
||||
#include "number_modifiers.h"
|
||||
|
||||
using namespace icu;
|
||||
using namespace icu::number::impl;
|
||||
|
||||
namespace {
|
||||
|
|
|
@ -7,7 +7,9 @@
|
|||
#include "number_patternmodifier.h"
|
||||
#include "unicode/dcfmtsym.h"
|
||||
#include "unicode/ucurr.h"
|
||||
#include "unicode/unistr.h"
|
||||
|
||||
using namespace icu;
|
||||
using namespace icu::number::impl;
|
||||
|
||||
MutablePatternModifier::MutablePatternModifier(bool isStrong) : fStrong(isStrong) {}
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
#include "unicode/utf16.h"
|
||||
#include "number_utils.h"
|
||||
|
||||
using namespace icu;
|
||||
using namespace icu::number::impl;
|
||||
|
||||
void PatternParser::parseToPatternInfo(const UnicodeString& patternString, ParsedPatternInfo& patternInfo, UErrorCode &status) {
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
#include "unicode/utf16.h"
|
||||
#include "uvectr32.h"
|
||||
|
||||
using namespace icu;
|
||||
using namespace icu::number::impl;
|
||||
|
||||
namespace {
|
||||
|
|
Loading…
Add table
Reference in a new issue