Skip to content

Commit 9a8588a

Browse files
More fixes of unwanted ADL usage of std algos (#4828)
This continues the work started in #4809.
1 parent ab8fa9e commit 9a8588a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fstext/determinize-star-inl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -725,7 +725,7 @@ void DeterminizerStar<F>::EpsilonClosure::
725725

726726
{
727727
// this sorting is based on StateId
728-
sort(ecinfo_.begin(), ecinfo_.end());
728+
std::sort(ecinfo_.begin(), ecinfo_.end());
729729

730730
output_subset->clear();
731731

0 commit comments

Comments
 (0)