I wanted to give irrKlang a look and I noticed it was created in VC 7.0. When I attempt to compile it in VC 8.0 I get the following error:
1>c:\irrklang\include\ISound.h(63) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
This happens at virtual isFinished()=0
Im assuming this means that until the author of irrKlang releases the source files, I cannot use irrKlang? Im just assuming its a VC compatibility problem??
irrKlang
Yes, the VC8 compiler is more strict, and does not accept int as a default return value for a function.
You should be able to recompile by modifying that line in the .h file to
You should be able to recompile by modifying that line in the .h file to
Code: Select all
virtual int isFinished()=0;
-
- Posts: 14
- Joined: Wed Sep 27, 2006 1:30 am