Kaydet (Commit) 177903cf authored tarafından Kohei Yoshida's avatar Kohei Yoshida

p is for pointers.

Change-Id: I7df56e7549e8ccccdfa9ca1b88f85e8c81e4a946
üst 9986f236
......@@ -1518,9 +1518,9 @@ public:
SortComparator( SvTreeList& rList ) : mrList(rList) {}
bool operator() ( const SvTreeListEntry& pLeft, const SvTreeListEntry& pRight ) const
bool operator() ( const SvTreeListEntry& rLeft, const SvTreeListEntry& rRight ) const
{
return mrList.Compare(&pLeft, &pRight) < 0;
return mrList.Compare(&rLeft, &rRight) < 0;
}
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment