mirror of
https://github.com/intel/llvm.git
synced 2026-01-25 10:55:58 +08:00
[Reproducers] Simplify providers with nested Info struct (NFC)
This replaces the `info` typedef with a nested struct named Info. This means we now have FooProvider and FooProvider::Info, instead of two related but separate classes FooProvider and FooInfo. This change is mostly cosmetic. llvm-svn: 363211
This commit is contained in:
@@ -67,7 +67,7 @@ public:
|
||||
if (!loader)
|
||||
return {};
|
||||
|
||||
FileSpec file = loader->GetFile<repro::CommandInfo>();
|
||||
FileSpec file = loader->GetFile<repro::CommandProvider::Info>();
|
||||
if (!file)
|
||||
return {};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user