mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 22:44:49 +00:00
ICU-5304 Allow source code to work again without using U_NAMESPACE_USE
X-SVN-Rev: 20691
This commit is contained in:
parent
668854033c
commit
3c9ac0863a
1 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
*******************************************************************************
|
||||
* Copyright (C) 2004-2005, International Business Machines
|
||||
* Copyright (C) 2004-2006, International Business Machines
|
||||
* Corporation and others. All Rights Reserved.
|
||||
*******************************************************************************
|
||||
* file name: regex.cpp
|
||||
|
@ -20,6 +20,8 @@
|
|||
#include "uassert.h"
|
||||
#include "cmemory.h"
|
||||
|
||||
U_NAMESPACE_USE
|
||||
|
||||
struct URegularExpression: public UMemory {
|
||||
public:
|
||||
URegularExpression();
|
||||
|
@ -40,8 +42,6 @@ public:
|
|||
|
||||
static const int32_t REXP_MAGIC = 0x72657870; // "rexp" in ASCII
|
||||
|
||||
U_NAMESPACE_USE
|
||||
|
||||
URegularExpression::URegularExpression() {
|
||||
fMagic = REXP_MAGIC;
|
||||
fPat = NULL;
|
||||
|
|
Loading…
Add table
Reference in a new issue