<div dir="auto"><div><br><br><div class="gmail_quote gmail_quote_container"><div dir="ltr" class="gmail_attr">On Mon, 24 Feb 2025, 8:31 am Nyall Dawson, <<a href="mailto:nyall.dawson@gmail.com">nyall.dawson@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi all,<br><br>Please see <a href="https://github.com/qgis/QGIS-Enhancement-Proposals/pull/330" target="_blank" rel="noreferrer">https://github.com/qgis/QGIS-Enhancement-Proposals/pull/330</a><br>for a proposed change to the QGIS coding policies to relax the current<br>prohibition against use of "<span>auto</span>" in some (more!) new cases.<div><br></div><div>(This follows up recent changes to permit auto for smart pointer types, see <a href="https://github.com/qgis/QGIS-Enhancement-Proposals/pull/319" target="_blank" rel="noreferrer">https://github.com/qgis/QGIS-Enhancement-Proposals/pull/319</a>)<br><br>This change relaxes the prohibition against auto to allow use of auto for variable types when the variable type is explicitly stated during its initialization as the result of a cast operation, such as dynamic_cast, static_cast, const_cast, reinterpret_cast, qobject_cast,<br>qgsgeometry_cast, or qgis::down_cast<br></div></div></blockquote></div></div><div dir="auto"><br></div><div dir="auto">This proposal has passed the 2 week discussion phase and is ready for voting now.</div><div dir="auto"><br></div><div dir="auto">Vote away!</div><div dir="auto"><br></div><div dir="auto">Nyall</div><div dir="auto"><br></div><div dir="auto"><br></div><div dir="auto"><br></div><div dir="auto"><br></div><div dir="auto"><div class="gmail_quote gmail_quote_container"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><br>Specifically:<br><br>// allowed, the pointer types are explicit during initialization:<br>auto markerSymbol = dynamic_cast< QgsMarkerSymbol* >( symbol );<br>auto vectorLayer = qobject_cast< QgsVectorLayer* >( layer );<br>if ( auto lineString = qgsgeometry_cast< const QgsLineString* >( geometry ) ) { ... }<br><br>// NOT allowed, the type is not explicit:<br>auto myLineStringPtr = downcastGeometryAsLineString( geometry );<br><br>Please keep discussion on<br><a href="https://github.com/qgis/QGIS-Enhancement-Proposals/pull/330" target="_blank" rel="noreferrer">https://github.com/qgis/QGIS-Enhancement-Proposals/pull/330</a> so that we</div><div>have a formal record of the discussion.</div><div><br></div><div>Thanks all!</div><div>Nyall</div><div><br></div></div>
</blockquote></div></div></div>