Re: BOOST_MESSAGE undefined
Posted by
Piotr Gregor on
Mar 05, 2013; 12:51am
URL: http://quantlib.414.s1.nabble.com/BOOST-MESSAGE-undefined-tp14086p14102.html
on Linux I develop other application. It is OK now, I just didn't know what to include.
but on Windows, after romoval or function
_use_check
changed to not have pointers to TEMPLATE functions as default, so changed to:
void _use_check(
const void*,
const void*) const {}
there were still errors while building test-suite project. unresolved externals: fdmhestonfwdop, fdmblackscholesfwdop, fdmsquarerootfwdop. obviously this classes (headers+source) I had to add to Quantlib project, build library QuantLib-vc110-mt-gd.lib again and rebuild test-suite project then. It's interesting how always some headers, sources are missing in main project, and test-suite can't link, at least I have always this issue.
after pleasure with VS linker error "lnk1210 exceeded internal ilk size limit link with incremental no" (it really likes RAM, but on windows I have this resource quite limited), it is OK. compiled. : p
test-suite: 1 test failed.
what will be a solution to _use_check function?
we can declare _use_check as template called with pointers to appropriate functions, or leave them as void* as above, or just remove this function.
I prefer rather to update my local repository with valid and up-to-date version of utilities.hpp to keep cohesion and green mark on folders, I don't like red.
why always me?