Click to See Complete Forum and Search --> : What error is that?


codegurugeek
August 2nd, 2005, 04:54 AM
if ((!igb)││(!pinout)││(!destfilter))
{
return E_POINTER;
}


error printed:

AVOp.cpp(337) : error C3209: '' : Unicode identifiers are not yet supported
AVOp.cpp(337) : error C2146: syntax error : missing ')' before identifier ''
AVOp.cpp(337) : error C3209: '' : Unicode identifiers are not yet supported
AVOp.cpp(337) : error C2146: syntax error : missing ';' before identifier ''
AVOp.cpp(337) : error C3861: '': identifier not found, even with argument-dependent lookup
AVOp.cpp(337) : error C2059: syntax error : ')'
AVOp.cpp(338) : error C2143: syntax error : missing ';' before '{'
AVOp.cpp(337) : error C3861: '': identifier not found, even with argument-dependent lookup


i am so confuse and puzzled... after searching through the whole day for nothing.. can anyone just assist me on this please?

m_sivadhas
August 2nd, 2005, 05:26 AM
The information what u given is not enough
to identify the error.

Darka
August 2nd, 2005, 05:37 AM
Well, it looks like you have a unicode identifier somewhere in your code, probably just before the code you posted.

Unicode identifies are not supported in VS.NET 2003, I think they are in VS.NET 2005

You really should post some more of the code, specifically code before line 337

regards,

humptydumpty
August 2nd, 2005, 05:43 AM
i am so confuse and puzzled... after searching through the whole day for nothing.. can anyone just assist me on this please?
just check it out

according to your information
just go through MSDN.and if possible post your code
error no C3209 occurs

'char' : Unicode identifiers are not yet supported
Unicode characters are not supported here#include <stdio.h>

int main()
{
// use the following syntax instead
int \u30c2\u30dc = 10;
printf("%d\n", \u30c2\u30dc);
}

and might be you forget to closed your opening quotes "

codegurugeek
August 2nd, 2005, 08:39 PM
by m_sivadhas
The information what u given is not enough
to identify the error.



by Darka
You really should post some more of the code, specifically code before line 337


Sorry about that because the information i have only consist those. The debugger is pointing on that portion only


by humptydumpty
just check it out
according to your information
just go through MSDN.and if possible post your code
error no C3209 occurs



Okay, i got the error[GOD_MODE]. Indeed is the operator problem.. geez..

Thank you all Guys
m_sivadhas
humptydumpty
Darka