~ubuntu-branches/ubuntu/trusty/aria2/trusty

« back to all changes in this revision

Viewing changes to src/MessageDigest.cc

  • Committer: Package Import Robot
  • Author(s): Kartik Mistry
  • Date: 2013-12-16 18:41:03 UTC
  • mfrom: (2.5.21 sid)
  • Revision ID: package-import@ubuntu.com-20131216184103-xzah3019zwut429g
Tags: 1.18.1-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
struct HashTypeEntry {
48
48
  std::string hashType;
49
49
  int strength;
50
 
  HashTypeEntry(const std::string& hashType, int strength):
51
 
    hashType(hashType), strength(strength) {}
 
50
  HashTypeEntry(std::string  hashType, int strength):
 
51
    hashType(std::move(hashType)), strength(strength) {}
52
52
};
53
53
} // namespace
54
54