We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1abb44 commit 1a62b42Copy full SHA for 1a62b42
1 file changed
include/phasar/PhasarLLVM/Plugins/Interfaces/ControlFlow/ICFGPlugin.h
@@ -33,8 +33,8 @@ class ICFGPlugin
33
const std::vector<std::string> EntryPoints;
34
35
public:
36
- ICFGPlugin(ProjectIRDB &IRDB, const std::vector<std::string> &EntryPoints)
37
- : IRDB(IRDB), EntryPoints(EntryPoints) {}
+ ICFGPlugin(ProjectIRDB &IRDB, std::vector<std::string> EntryPoints)
+ : IRDB(IRDB), EntryPoints(std::move(EntryPoints)) {}
38
};
39
40
extern std::map<std::string,
0 commit comments