wlav
wlav
Look for the word "iterator" in this patch file: https://github.com/wlav/cppyy-backend/commit/c5d853105026358840906145a9375af1ca238c66.patch I copied these over from upstream, but eg. this: ``` @@ -4456,16 +4458,16 @@ clang::QualType CppyyLegacy::TMetaUtils::ReSubstTemplateArg(clang::QualType inpu if (inputTST) {...
I'll go back to that in a bit (digging into #262 atm.). And yes, I was a bit lazy in that I have two differences from the actual release: master...
Yes, and `tuple` itself is handled differently now that I think about it. Had some compiler-internal type.
Interestingly, yes, I do get the broken type name of `std::tuple_cat` with the released version, but get this: `std::tuple_cat` with master. This, too, happens in the type name normalization, so...
Yes, Cling does not expose `using` in classes. It's on my wish list.
I really don't think straight-up sprinkling `PyErr_Clear()` b/c the "might" be an error is a good idea. Presumably, the error is there for a reason and even if it's only...
The DispatchPtr is only used internally from C++ by the Dispatcher. I wonder whether it wouldn't be more efficient to put the protections around its use rather than inside its...
No idea ... these symbols are provided by `libCoreLegacy.lib`, which is listed on the command line above. Can you check that library with `dumpbin.exe /exports`? Maybe there's a disagreement between...
From that output, you can see that libCoreLib contains symbols build for 64b windows, but you are creating a 32b build above. My best guess is that you are running...
For the first error, I'm not sure how the the build of that dictionary file was executed (I can't find the actual link command in the trace), but all those...