From d6f4195582ea8b5534ede48c2c9aa03531f8fa0e Mon Sep 17 00:00:00 2001 From: Daniel Kondor Date: Mon, 30 Dec 2024 17:00:03 +0100 Subject: [PATCH] nonstd: fix source file encoding (#2553) There was one non-UTF-8 character in comments; this changes to only use ASCII characters for simplicity. --- src/api/wayfire/nonstd/observer_ptr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/wayfire/nonstd/observer_ptr.h b/src/api/wayfire/nonstd/observer_ptr.h index bb67b3a07..2cfeb0cca 100644 --- a/src/api/wayfire/nonstd/observer_ptr.h +++ b/src/api/wayfire/nonstd/observer_ptr.h @@ -292,7 +292,7 @@ template< class W1, class W2 > bool operator<( observer_ptr p1, observer_ptr p2 ) { // return std::less()( 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::type >()( p1.get(), p2.get() ); }