Login  Register

Re: Visual Studio .Net

Posted by Luigi Ballabio-4 on Apr 03, 2002; 4:35am
URL: http://quantlib.414.s1.nabble.com/Visual-Studio-Net-tp1959p1960.html

At 07:16 PM 4/2/02 -0500, Jonathan Knight wrote:
>Has anyone tried compiling QuantLib using Visual C++ .Net ? It seems that
>Microsoft have changed parts of the standard library with the new version.
>For example the reverse iterator code is no longer working as VC++ now
>expects only one parameter for the template. Any help would be
>appreciated. Jonathan

Jonathan,
         currently we don't have a .Net compiler to try: it would be of
great help if you sent me the list of warnings/errors you get when
compiling, and also the value of _MSC_VER for the .Net compiler which you
can obtain by compiling and running the code below.

Thanks,
         Luigi


#include <iostream>

int main() {
     std::cout << _MSC_VER << std::endl;
     return 0;
}