mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
[Orc] Explicitly specify type for assignment.
This should fix the MSVC errors in http://lab.llvm.org:8011/builders/clang-x64-ninja-win7/builds/15120 llvm-svn: 279908
This commit is contained in:
parent
c6175f06bd
commit
178b5bd92f
@ -21,9 +21,9 @@ TEST(LogicalDylibTest, getLogicalModuleResourcesForSymbol) {
|
||||
|
||||
std::map<int, std::set<std::string>> ModuleSymbols;
|
||||
|
||||
ModuleSymbols[0] = { "foo", "dummy" };
|
||||
ModuleSymbols[1] = { "bar" };
|
||||
ModuleSymbols[2] = { "baz", "dummy" };
|
||||
ModuleSymbols[0] = std::set<std::string>({ "foo", "dummy" });
|
||||
ModuleSymbols[1] = std::set<std::string>({ "bar" });
|
||||
ModuleSymbols[2] = std::set<std::string>({ "baz", "dummy" });
|
||||
|
||||
auto MockBaseLayer = createMockBaseLayer<int>(
|
||||
DoNothingAndReturn<int>(0),
|
||||
|
Loading…
x
Reference in New Issue
Block a user