diff options
-rw-r--r-- | src/ortho/llvm6/llvm-cbindings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ortho/llvm6/llvm-cbindings.cpp b/src/ortho/llvm6/llvm-cbindings.cpp index 2f5cebe83..971761892 100644 --- a/src/ortho/llvm6/llvm-cbindings.cpp +++ b/src/ortho/llvm6/llvm-cbindings.cpp @@ -1437,7 +1437,7 @@ struct ODnodeSubprg : ODnodeBase { OIdent Ident; ODKind getKind() const override { return ODKSubprg; } ODnodeSubprg(LLVMValueRef R, OTnode T, OStorage S, OIdent Id, - std::vector<ODnodeInter *> Inters) : + const std::vector<ODnodeInter *> &Inters) : ODnodeBase(R, T), Inters(Inters), Storage(S), Ident(Id) {} }; |