Skip to content

Commit

Permalink
nonstd: fix source file encoding (#2553)
Browse files Browse the repository at this point in the history
There was one non-UTF-8 character in comments; this changes to only use ASCII characters for simplicity.
  • Loading branch information
dkondor authored Dec 30, 2024
1 parent 78ef488 commit d6f4195
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/wayfire/nonstd/observer_ptr.h
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ template< class W1, class W2 >
bool operator<( observer_ptr<W1> p1, observer_ptr<W2> p2 )
{
// return std::less<W3>()( p1.get(), p2.get() );
// where W3 is the composite pointer type (C++14 §5) of W1* and W2*.
// where W3 is the composite pointer type (C++14 Section 5) of W1* and W2*.
return std::less< typename detail::common_type<W1*,W2*>::type >()( p1.get(), p2.get() );
}

Expand Down

0 comments on commit d6f4195

Please sign in to comment.