I have just tried to compile the lastest version of Irrlicht with VC .NET 2003, and I got these errors (debug compile) :
d:\DEV\irrlicht\source\fast_atof.h(68 ) : error C2666: 'pow' : 7 overloads have similar conversions
d:\DEV\irrlicht\source\CCameraMayaSceneNode.cpp(246): error C2666: 'fmod' : 3 overloads have similar conversions
To fix them, I just made these minor changements:
f *= (f32)pow((f32)10, exp); in fast_atof.h
nRotY = (f32)fmod(nRotY, (f32)360.0); in CCameraMayaSceneNode.cpp