ICU-5410 These functions can never be inlined. So remove them from the header.
X-SVN-Rev: 20385
This commit is contained in:
parent
4f6b828269
commit
a37c25b3f5
@ -11,6 +11,9 @@
|
||||
#include "hash.h"
|
||||
#include <stdlib.h>
|
||||
|
||||
DataMap::~DataMap() {}
|
||||
DataMap::DataMap() {}
|
||||
|
||||
int32_t
|
||||
DataMap::utoi(const UnicodeString &s) const
|
||||
{
|
||||
|
@ -1,6 +1,6 @@
|
||||
/********************************************************************
|
||||
* COPYRIGHT:
|
||||
* Copyright (c) 2002-2005, International Business Machines Corporation and
|
||||
* Copyright (c) 2002-2006, International Business Machines Corporation and
|
||||
* others. All Rights Reserved.
|
||||
********************************************************************/
|
||||
|
||||
@ -26,10 +26,10 @@ U_NAMESPACE_END
|
||||
*/
|
||||
class T_CTEST_EXPORT_API DataMap {
|
||||
public:
|
||||
virtual ~DataMap() {};
|
||||
virtual ~DataMap();
|
||||
|
||||
protected:
|
||||
DataMap() {};
|
||||
DataMap();
|
||||
int32_t utoi(const UnicodeString &s) const;
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
/********************************************************************
|
||||
* COPYRIGHT:
|
||||
* Copyright (c) 2002-2005, International Business Machines Corporation and
|
||||
* Copyright (c) 2002-2006, International Business Machines Corporation and
|
||||
* others. All Rights Reserved.
|
||||
********************************************************************/
|
||||
|
||||
@ -96,7 +96,7 @@ public:
|
||||
private:
|
||||
// RBTestData() {};
|
||||
// RBTestData(const RBTestData& original) {};
|
||||
RBTestData& operator=(const RBTestData& /*original*/) {return *this;};
|
||||
RBTestData& operator=(const RBTestData& /*original*/);
|
||||
|
||||
public:
|
||||
virtual ~RBTestData();
|
||||
|
Loading…
Reference in New Issue
Block a user