forked from OSchip/llvm-project
[ORC] Replace decltype with a concrete type to make MSVC happy.
This should fix some build failures on windows bots due to r314486. llvm-svn: 314490
This commit is contained in:
parent
fc064af181
commit
13cda49c96
|
@ -258,8 +258,8 @@ TEST_F(RTDyldObjectLinkingLayerExecutionTest, NoPrematureAllocation) {
|
|||
TEST_F(RTDyldObjectLinkingLayerExecutionTest, TestNotifyLoadedSignature) {
|
||||
RTDyldObjectLinkingLayer ObjLayer(
|
||||
[]() { return nullptr; },
|
||||
[](decltype(ObjLayer)::ObjHandleT,
|
||||
const decltype(ObjLayer)::ObjectPtr &obj,
|
||||
[](RTDyldObjectLinkingLayer::ObjHandleT,
|
||||
const RTDyldObjectLinkingLayer::ObjectPtr &obj,
|
||||
const RuntimeDyld::LoadedObjectInfo &info) {});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue