From: M. L. <mat...@gm...> - 2008-09-25 19:57:20
|
Hi, I have a problem when I build from source (CVS) the GuidoEngineLib on Visual Studio 2005. I got this error: 1>c:\libraries\guidolib\lib-score-engine-add\debugdevice.h(120) : error C2512: 'std::basic_ostream<_Elem,_Traits>' : no appropriate default constructor available 1> with 1> [ 1> _Elem=char, 1> _Traits=std::char_traits<char> 1> ] I googled a little bit to see that, it seems to be a compiler version issue: http://bytes.com/forum/thread451578.html For now, I fixed temporary this define in the file "debugdevice.h" : -line 116 : #define dbgStream (filestream ? (*filestream) : cout) +line 116 : #define dbgStream cout I don't know if you plan to support Visual Studio 2005 +, but it is something to think. Sincerely, Mathieu Labbé |