ICU-8464 Try to fix broken build.

X-SVN-Rev: 34689
This commit is contained in:
Travis Keep 2013-11-22 20:42:19 +00:00
parent ac9371ace7
commit 139d3a5134

View File

@ -25,7 +25,7 @@ U_NAMESPACE_BEGIN
class CacheEntry2;
class LRUCache : public UObject {
class U_COMMON_API LRUCache : public UObject {
public:
template<typename T>
void get(const char *localeId, SharedPtr<T> &ptr, UErrorCode &status) {
@ -59,7 +59,7 @@ class LRUCache : public UObject {
typedef UObject *(*CreateFunc)(const char *localeId, UErrorCode &status);
class SimpleLRUCache : public LRUCache {
class U_COMMON_API SimpleLRUCache : public LRUCache {
public:
SimpleLRUCache(
int32_t maxSize,