Changeset - r28273:2d6916a6d162
[Not reviewed]
master
0 2 0
Peter Nelson - 12 months ago 2023-12-10 12:05:28
peter1138@openttd.org
Cleanup: iif should be iff (if-and-only-if) (#11570)
2 files changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/core/geometry_type.hpp
Show inline comments
 
@@ -215,7 +215,7 @@ struct Rect {
 
	/**
 
	 * Test if a point falls inside this Rect.
 
	 * @param pt the point to test.
 
	 * @return true iif the point falls inside the Rect.
 
	 * @return true iff the point falls inside the Rect.
 
	 */
 
	inline bool Contains(const Point &pt) const
 
	{
src/newgrf_object.h
Show inline comments
 
@@ -78,7 +78,7 @@ struct ObjectSpec {
 

	
 
	/**
 
	 * Test if this object is enabled.
 
	 * @return True iif this object is enabled.
 
	 * @return True iff this object is enabled.
 
	 */
 
	bool IsEnabled() const { return this->views > 0; }
 

	
0 comments (0 inline, 0 general)