2011/10/10 Veit Jahns <nuncupa...@googlemail.com>:
>> Microsoft suggests this:
>> #ifdef _MSC_VER
>> #if _MSC_VER == 1200
>> std::ostream& operator<<(std::ostream& os, __int64 i ) // borrowed from
>> http://support.microsoft.com/kb/168440
>> {
>>     char buf[20];
>>     sprintf(buf,"%I64d", i );
>>     os << buf;
>>     return os;
>> }
>> #endif
>> #endif
>> With either of the 2 fixes above, both CLUCENE_CORE and CLUCENE_SHARED
>> compile okay.
>
> I will then integrate the later one.

Added this workaround to th vc6-branch.

Kind regards,

Veit Jahns

------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure contains a
definitive record of customers, application performance, security
threats, fraudulent activity and more. Splunk takes this data and makes
sense of it. Business sense. IT sense. Common sense.
http://p.sf.net/sfu/splunk-d2d-oct
_______________________________________________
CLucene-developers mailing list
CLucene-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/clucene-developers

Reply via email to