7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-21 00:21:25 +00:00

Fix warning: 'const' qualifier on return type has no effect.

This commit is contained in:
Alex Shvartzkop 2024-07-28 03:34:14 +03:00
parent 7ce00e511b
commit 377b9aa859

View File

@ -85,7 +85,7 @@ public:
bool ContainsNetclassWithName( const wxString& netclass ) const;
/// @ brief Determines if this is marked as the default netclass
const bool IsDefault() const { return m_isDefault; }
bool IsDefault() const { return m_isDefault; }
/// @brief Gets the consolidated name of this netclass (which may be an aggregate)
const wxString GetName() const;