config.h HASH_MAP

Problems compiling? Don't understand the source code? Don't know how to code your feature? Post here.

Moderator: Moderators

Locked
Qbert
Posts: 73
Joined: 2003-06-07 03:12

config.h HASH_MAP

Post by Qbert » 2003-06-09 22:58

In ConnectionManager.h, this line
typedef hash_map<Ptr, u_int32_t, PointerHash<ConnectionQueueItem> > TimeMap;
(Line 37 of this posting date's CVS)

Should this be HASH_MAP as configured by config.h?

sarf
Posts: 382
Joined: 2003-01-24 05:43
Location: Sweden
Contact:

Post by sarf » 2003-06-10 05:23

Ehmmm.... no?

I don't think it should be any different from what it is - does it fail/give errors when you compile it?

Sarf
---
Mysteries are good for the soul, and a pain in the neck.

GargoyleMT
DC++ Contributor
Posts: 3212
Joined: 2003-01-07 21:46
Location: .pa.us

Re: config.h HASH_MAP

Post by GargoyleMT » 2003-06-13 15:14

Qbert wrote:Should this be HASH_MAP as configured by config.h?
HASH_MAP, as far as I recall, is one of the points that STLPort diverges from the STL library included in Visual Studio (or vice versa)...

Locked