Common/Core: Minor rvalue reference related cleanups.

This commit is contained in:
Jordan Woyak
2020-01-23 22:58:23 -06:00
parent 42c03c4dad
commit 732032cdb2
6 changed files with 12 additions and 46 deletions

View File

@ -47,8 +47,7 @@ public:
};
Entry(Type type_, const std::string& name_);
Entry(Type type_, const std::string& name_, const std::vector<u8>& bytes_);
Entry(Type type_, const std::string& name_, std::vector<u8>&& bytes_);
Entry(Type type_, const std::string& name_, std::vector<u8> bytes_);
// Intended for use with the non array types.
template <typename T>