ICU-9880 g++ does not seem to allow a class pointer field whose type is from an anonymous namespace

X-SVN-Rev: 33277
This commit is contained in:
Markus Scherer 2013-02-20 20:57:54 +00:00
parent 1104e412a3
commit 9452d9ed08
3 changed files with 7 additions and 7 deletions

View file

@ -117,6 +117,11 @@ int32_t binarySearch(const UVector &list, const UnicodeString &s, const Collator
}
}
} // namespace
// The BucketList is not in the anonymous namespace because only Clang
// seems to support its use in other classes from there.
// However, we also don't need U_I18N_API because it is not used from outside the i18n library.
class BucketList : public UObject {
public:
BucketList(UVector *bucketList, UVector *publicBucketList)
@ -167,8 +172,6 @@ public:
UVector *immutableVisibleList_;
};
} // namespace
AlphabeticIndex::ImmutableIndex::~ImmutableIndex() {
delete buckets_;
delete collatorPrimaryOnly_;

View file

@ -71,12 +71,7 @@ U_NAMESPACE_BEGIN
// Forward Declarations
namespace {
class BucketList;
} // namespace;
class Collator;
class RuleBasedCollator;
class StringEnumeration;

View file

@ -7,6 +7,8 @@
// file: alphaindex.cpp
// Alphabetic Index Tests.
//
#include <stdio.h> // for sprintf
#include "intltest.h"
#include "alphaindextst.h"