< Previous by Date | Date Index | Next by Date > |
< Previous in Thread | Thread Index |
So, what is tripping you up is the following: from Inserter.hxx *snip* /// Completely generic insert function #ifdef REASONABLE_TEMPLATES template <class T> std::ostream& insert(std::ostream& s, const T& t) { // use native << s << t; return s; } #endif *snip* from compat.hxx *snip* #if !defined(__INTEL_COMPILER) # define REASONABLE_TEMPLATES #endif *snip* So, under the intel compiler, the version of insert that you need is disabled (apparently there was a version of the intel compiler that did not correctly handle this definition). You could try removing the #ifdef REASONABLE_TEMPLATES guard around the definition in Inserter.hxx, and see if it works. If it does, we may need to fiddle with compat.hxx to take version into account. Best regards, Byron Campen
|
Attachment:
smime.p7s
Description: S/MIME cryptographic signature