[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Nel] plugin max compilation prb
From: |
Vianney Lecroart |
Subject: |
Re: [Nel] plugin max compilation prb |
Date: |
Fri, 5 Jul 2002 12:40:58 +0200 |
Right, it s a conflict between min max defined in windows.h and in stlport.
What you can do is to find where <windows.h> is included and add this just
after
------
#ifdef min
#undef min
#endif
#ifdef max
#undef max
#endif
------
Vianney Lecroart
---
lead network programmer / nevrax.com
icq#: 6870415
homepage: http://ace.planet-d.net
www.geekcode.com: GCS/E d- s+++: a-- C+++$ UL++ P- L+++>+$ E+>- W++ N+ o? K-
w++$ O- M- V- PS- PE? Y PGP t 5? X+ R- tv++ b- DI D+ G e++ h+ r-- y?
----- Original Message -----
From: "jean-philippe" <address@hidden>
To: <address@hidden>
Sent: Thursday, July 04, 2002 8:45 PM
Subject: [Nel] plugin max compilation prb
Hello all
i have a problem to compile Nel patch lib
is seem there is a conflict between STL and something
i have prb with STD::min and STD::max
error C2589: '(' : illegal token on right side of '::'
when i suppress STD:: , error left but ...
somebody have the solution ? i have compiled snowball without prb.
thanks