|
From: cx479 <ar...@hu...> - 2009-04-20 11:21:14
|
currently have revision 16182 of QuantLib revision 16093 of QuantLibAddin QuantLib builds fine. When I build QuantLibAddin, get errors in enumeratedclasses.cpp originating from : new QuantLib::FDAmericanEngine<>(process, timeSteps, timeSteps-1)); new QuantLib::FDBermudanEngine<>(process, timeSteps, timeSteps-1)); new QuantLib::FDEuropeanEngine<>(process, timeSteps, timeSteps-1)); When changed to : new QuantLib::FDAmericanEngine(process, timeSteps, timeSteps-1)); new QuantLib::FDBermudanEngine(process, timeSteps, timeSteps-1)); new QuantLib::FDEuropeanEngine(process, timeSteps, timeSteps-1)); this file compiler fine. But then further down the line I get errors in other files : e.g. ratehelpers.cpp(183) : error C2039: 'BondHelper' : is not a member of 'QuantLib' Thanks -- View this message in context: http://www.nabble.com/errors-on-building-QuantLibAddin-tp23134818p23134818.html Sent from the quantlib-dev mailing list archive at Nabble.com. |