Make constructor more efficient

This commit is contained in:
TheAssassin
2018-08-31 16:49:17 +02:00
parent dcf1726889
commit af310722df

View File

@@ -27,7 +27,7 @@ namespace linuxdeploy {
uint8_t elfABI = 0;
public:
explicit PrivateData(const bf::path& path) : path(path) {}
explicit PrivateData(bf::path path) : path(std::move(path)) {}
public:
static std::string getPatchelfPath() {