> > Hi, > > > > The checked STL of VS won't compile the rewritetest if the iterator > > hasn't > > an operator < (it check the begin iterator is preceding the end). > > Just a > > small patch for adding it. > > > > (the ropeiterator don't comply to the RandomIterator concept, even if > > declared so. I suppose it is just a fast hack, fleshed out as needed) > > Ah, I just switched ropeiterator from random access to > bidirectional. Can you see if that helps? > > -Chris=
Yes it works, without my patch. I still have two link error on: LLVM::APFloat::ReadVal( llvm::deserialiser& ) Llvm::APFloat::Emit( llvm::deserialiser& ) ***** 2>clangast.lib(StmtSerialization.obj) : error LNK2019: unresolved external symbol "public: static class llvm::APFloat __cdecl llvm::APFloat::ReadVal(class llvm::Deserializer &)" ([EMAIL PROTECTED]@llvm@@[EMAIL PROTECTED]@2@@Z) referenced in function "public: static class clang::FloatingLiteral * __cdecl clang::FloatingLiteral::directMaterialize(class llvm::Deserializer &)" ([EMAIL PROTECTED]@clang@@[EMAIL PROTECTED]@llvm@@@Z) 2>clangast.lib(StmtSerialization.obj) : error LNK2019: unresolved external symbol "public: void __thiscall llvm::APFloat::Emit(class llvm::Serializer &)const " ([EMAIL PROTECTED]@llvm@@[EMAIL PROTECTED]@@Z) referenced in function "public: static void __cdecl llvm::SerializeTrait<class llvm::APFloat>::Emit(class llvm::Serializer &,class llvm::APFloat const &)" ([EMAIL PROTECTED]@[EMAIL PROTECTED]@@@llvm@@[EMAIL PROTECTED]@ABVAPFloat@ 2@@Z) ***** But I have an up to date llvm (svn update and recompile). Any idea ? Cédric _______________________________________________ cfe-dev mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev
