| Index: courgette/adjustment_method.cc
|
| diff --git a/courgette/adjustment_method.cc b/courgette/adjustment_method.cc
|
| index 435e44afb36433f3af791badcfbe4b4e279346ef..eabb6845c7281f9aefaf83280ea528a8c264f52d 100644
|
| --- a/courgette/adjustment_method.cc
|
| +++ b/courgette/adjustment_method.cc
|
| @@ -81,11 +81,11 @@ struct OrderLabelInfoByAddressAscending {
|
|
|
| static std::string ToString(LabelInfo* info) {
|
| std::string s;
|
| - StringAppendF(&s, "%c%d", "pm"[info->is_model_], info->debug_index_);
|
| + base::StringAppendF(&s, "%c%d", "pm"[info->is_model_], info->debug_index_);
|
| if (info->label_->index_ != Label::kNoIndex)
|
| - StringAppendF(&s, " (%d)", info->label_->index_);
|
| + base::StringAppendF(&s, " (%d)", info->label_->index_);
|
|
|
| - StringAppendF(&s, " #%u", info->refs_);
|
| + base::StringAppendF(&s, " #%u", info->refs_);
|
| return s;
|
| }
|
|
|
|
|