forked from OSchip/llvm-project
[Orc] More qualifications of lambda-captured member variables to fix GCC ICEs.
llvm-svn: 258286
This commit is contained in:
parent
7e64917fd1
commit
5959df89e9
|
@ -258,12 +258,12 @@ public:
|
|||
|
||||
LOSHandleLoad();
|
||||
|
||||
NotifyLoaded(H, Objs, LoadedObjInfos);
|
||||
this->NotifyLoaded(H, Objs, LoadedObjInfos);
|
||||
|
||||
RTDyld.finalizeWithMemoryManagerLocking();
|
||||
|
||||
if (NotifyFinalized)
|
||||
NotifyFinalized(H);
|
||||
if (this->NotifyFinalized)
|
||||
this->NotifyFinalized(H);
|
||||
};
|
||||
|
||||
auto LOS =
|
||||
|
|
Loading…
Reference in New Issue