Thread overview
Visual C++ 2013 Support?
May 21, 2014
Gabor Fischer
May 26, 2014
Matt Wilson
Jun 01, 2014
Matt Wilson
Jun 06, 2014
Gabor Fischer
May 21, 2014
Hello,

Visual C++ 2013 has been around for quite a while now. Any chance for a version of STLSOFT which supports it?


So Long...

Gabor

May 26, 2014
Hi Gabor

There's been a huge amount going on behind the scenes, which will see STLSoft 1.12 released before the end of the year. For now, I can and should do the minimum for STLSoft 1.9 support for late versions of VS, and will endeavour to do so in next couple of days.

Thanks for the ongoing interest.

Matt

"Gabor Fischer" <Gabor.Fischer@systecs.com> wrote in message news:CuGA7uz4QNB@systecs.com...
> Hello,
>
> Visual C++ 2013 has been around for quite a while now. Any chance for a version of STLSOFT which supports it?
>
>
> So Long...
>
> Gabor
> 


June 01, 2014
Done

"Matt Wilson" <matthewwilson@acm.org> wrote in message news:llu15v$luu$1@digitalmars.com...
> Hi Gabor
>
> There's been a huge amount going on behind the scenes, which will see STLSoft 1.12 released before the end of the year. For now, I can and should do the minimum for STLSoft 1.9 support for late versions of VS, and will endeavour to do so in next couple of days.
>
> Thanks for the ongoing interest.
>
> Matt
>
> "Gabor Fischer" <Gabor.Fischer@systecs.com> wrote in message news:CuGA7uz4QNB@systecs.com...
>> Hello,
>>
>> Visual C++ 2013 has been around for quite a while now. Any chance for a version of STLSOFT which supports it?
>>
>>
>> So Long...
>>
>> Gabor
>>
>
> 


June 06, 2014
Hello Matt,

> Done


I tested it today, but unfortunately it still doesn't work. This program:


#include "stdafx.h"
#include "winstl/registry/reg_key_sequence.hpp"


int _tmain(int argc, _TCHAR* argv[])
{
    return 0;
}


leads to following compilation error:

d:\libraries\stlsoft\1.9.118\include\stlsoft\util\std\library_discriminato r.hpp(351): fatal error C1189: #error :  Dinkumware C++ Library version unrecognised: are you using a version of VC++ later than 10.0?


So Long...

Gabor