liblp: convert more functions to use string_view (#5)

Test: builds

Change-Id: I59ef370489b36410e3eaf90dc2623efaeefd613b
This commit is contained in:
Yifan Hong 2019-09-23 18:33:48 -07:00
parent 069eae2efa
commit a1c1eb604d
2 changed files with 2 additions and 2 deletions

View File

@ -1136,7 +1136,7 @@ bool MetadataBuilder::AddLinearExtent(Partition* partition, const std::string& b
return true;
}
std::vector<Partition*> MetadataBuilder::ListPartitionsInGroup(const std::string& group_name) {
std::vector<Partition*> MetadataBuilder::ListPartitionsInGroup(std::string_view group_name) {
std::vector<Partition*> partitions;
for (const auto& partition : partitions_) {
if (partition->group_name() == group_name) {

View File

@ -289,7 +289,7 @@ class MetadataBuilder {
const std::vector<Interval>& free_region_hint = {});
// Return the list of partitions belonging to a group.
std::vector<Partition*> ListPartitionsInGroup(const std::string& group_name);
std::vector<Partition*> ListPartitionsInGroup(std::string_view group_name);
// Changes a partition's group. Size constraints will not be checked until
// the metadata is exported, to avoid errors during potential group and