B
bmassey
Hi,
Was wondering if anyone could help me with this odd error:
Am working in VS.Net Framework 1.1 C++.
I had a function defined as void colorizeImage(). I decided I didn't
need that function anymore and so renamed it to be void
filterTheImage(). The compiler comes back and gives me this message:
c:\...\klt.cpp(718): error C2365: 'filterTheImage' : redefinition;
previous definition was a 'formerly unknown identifier'.
If I name it back to the previous name (colorizeImage()) the compiler
is happy. I also tried to create a new function named
filterTheImage(), but the compiler sqwaks on this too. An
accompanying error is: c:\...\klt.cpp(205): error C3861:
'filterTheImage': identifier not found, even with argument-dependent
lookup
Any help would be much appreciated.
Thanks,
Beth
Was wondering if anyone could help me with this odd error:
Am working in VS.Net Framework 1.1 C++.
I had a function defined as void colorizeImage(). I decided I didn't
need that function anymore and so renamed it to be void
filterTheImage(). The compiler comes back and gives me this message:
c:\...\klt.cpp(718): error C2365: 'filterTheImage' : redefinition;
previous definition was a 'formerly unknown identifier'.
If I name it back to the previous name (colorizeImage()) the compiler
is happy. I also tried to create a new function named
filterTheImage(), but the compiler sqwaks on this too. An
accompanying error is: c:\...\klt.cpp(205): error C3861:
'filterTheImage': identifier not found, even with argument-dependent
lookup
Any help would be much appreciated.
Thanks,
Beth