We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c3ae44 commit 571b0d8Copy full SHA for 571b0d8
llvm/lib/InterfaceStub/IFSStub.cpp
@@ -29,15 +29,15 @@ IFSStub::IFSStub(IFSStub &&Stub) {
29
Symbols = std::move(Stub.Symbols);
30
}
31
32
-IFSStubTriple::IFSStubTriple(IFSStubTriple const &Stub) {
+IFSStubTriple::IFSStubTriple(IFSStubTriple const &Stub) : IFSStub() {
33
IfsVersion = Stub.IfsVersion;
34
Target = Stub.Target;
35
SoName = Stub.SoName;
36
NeededLibs = Stub.NeededLibs;
37
Symbols = Stub.Symbols;
38
39
40
-IFSStubTriple::IFSStubTriple(IFSStub const &Stub) {
+IFSStubTriple::IFSStubTriple(IFSStub const &Stub) : IFSStub() {
41
42
43
0 commit comments