See https://salilab.org/internal/imp/tests.html
Or more specifically, https://salilab.org/internal/imp/logs/imp/bin.i386-w32.log (since I've already addressed the other failures).
Looks like MSVC doesn't like some part of Daniel's latest patch. I'm not super-familiar with the Boost traits stuff (which looks like the culprit). Anybody have any idea what may be wrong?
Ben
It looks like VC is having trouble converting the non-const iterator to a const one. Try putting static_castModel::ParticleConstIterator(fi.p_) in instead of fi.p_. Hopefully that will give it enough of a hint that it can figure things out.
On Apr 11, 2008, at 6:16 PM, Ben Webb wrote:
> See https://salilab.org/internal/imp/tests.html > > Or more specifically, > https://salilab.org/internal/imp/logs/imp/bin.i386-w32.log (since I've > already addressed the other failures). > > Looks like MSVC doesn't like some part of Daniel's latest patch. I'm > not > super-familiar with the Boost traits stuff (which looks like the > culprit). Anybody have any idea what may be wrong? > > Ben > -- > ben@salilab.org http://salilab.org/~ben/ > "It is a capital mistake to theorize before one has data." > - Sir Arthur Conan Doyle > _______________________________________________ > IMP-dev mailing list > IMP-dev@salilab.org > https://salilab.org/mailman/listinfo/imp-dev
Daniel Russel wrote: > It looks like VC is having trouble converting the non-const iterator > to a const one. Try putting > static_castModel::ParticleConstIterator(fi.p_) in instead of fi.p_. > Hopefully that will give it enough of a hint that it can figure things > out.
Thanks - that was exactly it. Now fixed in r522.
Ben
participants (2)
-
Ben Webb
-
Daniel Russel