ICU-5410 These functions can never be inlined. So remove them from the header.

X-SVN-Rev: 20385
This commit is contained in:
George Rhoten 2006-09-22 18:09:32 +00:00
parent 4f6b828269
commit a37c25b3f5
3 changed files with 8 additions and 5 deletions

View File

@ -11,6 +11,9 @@
#include "hash.h"
#include <stdlib.h>
DataMap::~DataMap() {}
DataMap::DataMap() {}
int32_t
DataMap::utoi(const UnicodeString &s) const
{

View File

@ -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;

View File

@ -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();