vote up 0 vote down star

Hi, I'm tring to migrate my code from VCpp 6 to VCpp 2008 express but when I build the solution I receive this error message:

icl: warning: problem with
Microsoft compilation of
'c:\Desenvolvimento\DFF\Base\\version.cpp'
1>C:\Arquivos de programas\Microsoft
Visual Studio
9.0\VC\include\string.h(69): error:   expected a ";" 1> 
__DEFINE_CPP_OVERLOAD_STANDARD_FUNC_0_1(char> *,
 __RETURN_POLICY_DST, __EMPTY_DECLSPEC, _strset, _Inout_z_, 
char, _Dest, _In_ int, _Value)

There are a lot of errors like this, sometimes expecting ";", sometimes ")".

Thanks, Leandro Lima

flag

4 Answers

vote up 0 vote down check

The error was occuring because in the Visual C++ 6 I call Intel compiler by a .bat file to create a version number to my project. Now I'm using, Microsoft compiler and I haven't change the call. Thanks Leandro Lima

link|flag
vote up 0 vote down

It looks to me like some variables, types, or preprocessor symbols you need aren't defined.

Check out the code immediately prior to that ";", and then try to track back where it is defined.

link|flag
Heh. There ought to be a badge for getting a 0-voted answer accepted. This is like my third time. :-) – T.E.D. Jul 21 at 13:23
...out of four. Had it happen again yesterday. – T.E.D. Jul 22 at 13:33
vote up 2 vote down

Be careful about upgrading to express version if you have need for MFC and the control wizards/editors. You will not have access to that kind of functionality in Express if I recall correctly.

link|flag
vote up 1 vote down

Getting error messages from standard headers usually is a sign of an error in some other error in one of your headers which was included before the standard headers. Have you looked for this?

VC6 is, at least from today's POV, spectacularly bad in supporting standard C++. Among other errors, it accepted a lot of faulty code that isn't accepted by newer versions of VC anymore.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.