From 1f494a3129a508748b0597b937a5579f6693392b Mon Sep 17 00:00:00 2001 From: Vladimir Glazounov Date: Thu, 20 Sep 2007 14:59:27 +0000 Subject: INTEGRATION: CWS os2port01 (1.3.34); FILE MERGED 2007/08/13 11:18:47 obr 1.3.34.2: RESYNC: (1.3-1.5); FILE MERGED 2006/12/28 15:05:49 ydario 1.3.34.1: OS/2 initial import. --- soltools/ldump/hashtbl.cxx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'soltools/ldump') diff --git a/soltools/ldump/hashtbl.cxx b/soltools/ldump/hashtbl.cxx index 71348c7fa817..cfa9e633826e 100644 --- a/soltools/ldump/hashtbl.cxx +++ b/soltools/ldump/hashtbl.cxx @@ -4,9 +4,9 @@ * * $RCSfile: hashtbl.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: vg $ $Date: 2007-03-26 14:38:26 $ + * last change: $Author: vg $ $Date: 2007-09-20 15:59:27 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -365,11 +365,7 @@ void HashTable::SmartGrow() unsigned long lOldSize = m_lSize; // alte Daten sichern HashItem* pOldData = m_pData; -#ifdef __MINGW32__ m_lSize = (unsigned long) (m_dGrowFactor * m_lSize); // neue Größe -#else - m_lSize = unsigned long (m_dGrowFactor * m_lSize); // neue Größe -#endif m_pData = new HashItem[m_lSize]; // neue Daten holen // kein Speicher: -- cgit