| Index: cc/trees/property_tree.cc
|
| diff --git a/cc/trees/property_tree.cc b/cc/trees/property_tree.cc
|
| index ab426546edbf1bac2b285b4b012b2ad81ce16868..7b597768444a39a08647717070af4966c240ed05 100644
|
| --- a/cc/trees/property_tree.cc
|
| +++ b/cc/trees/property_tree.cc
|
| @@ -70,7 +70,7 @@ void PropertyTree<T>::clear() {
|
| nodes_.push_back(T());
|
| back()->id = kRootNodeId;
|
| back()->parent_id = kInvalidNodeId;
|
| - owning_layer_id_to_node_index.clear();
|
| + owning_layer_id_to_node_index_.clear();
|
|
|
| #if DCHECK_IS_ON()
|
| PropertyTree<T> tree;
|
| @@ -81,7 +81,7 @@ void PropertyTree<T>::clear() {
|
| template <typename T>
|
| bool PropertyTree<T>::operator==(const PropertyTree<T>& other) const {
|
| return nodes_ == other.nodes() && needs_update_ == other.needs_update() &&
|
| - owning_layer_id_to_node_index == other.owning_layer_id_to_node_index;
|
| + owning_layer_id_to_node_index_ == other.owning_layer_id_to_node_index_;
|
| }
|
|
|
| template <typename T>
|
|
|