Skip to content

Commit 1a62b42

Browse files
committed
minor
1 parent b1abb44 commit 1a62b42

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • include/phasar/PhasarLLVM/Plugins/Interfaces/ControlFlow

include/phasar/PhasarLLVM/Plugins/Interfaces/ControlFlow/ICFGPlugin.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ class ICFGPlugin
3333
const std::vector<std::string> EntryPoints;
3434

3535
public:
36-
ICFGPlugin(ProjectIRDB &IRDB, const std::vector<std::string> &EntryPoints)
37-
: IRDB(IRDB), EntryPoints(EntryPoints) {}
36+
ICFGPlugin(ProjectIRDB &IRDB, std::vector<std::string> EntryPoints)
37+
: IRDB(IRDB), EntryPoints(std::move(EntryPoints)) {}
3838
};
3939

4040
extern std::map<std::string,

0 commit comments

Comments
 (0)