kicad-developers team mailing list archive
-
kicad-developers team
-
Mailing list archive
-
Message #24927
[PATCH 12/16] Make NETLIST_OBJECT::GetConnectionType() const
This function does not need to modify object state.
---
eeschema/class_netlist_object.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/eeschema/class_netlist_object.h b/eeschema/class_netlist_object.h
index 9608f90..403bade 100644
--- a/eeschema/class_netlist_object.h
+++ b/eeschema/class_netlist_object.h
@@ -156,7 +156,7 @@ public:
m_ConnectionType = aFlg;
}
- NET_CONNECTION_T GetConnectionType()
+ NET_CONNECTION_T GetConnectionType() const
{
return m_ConnectionType;
}
Follow ups
References
-
[PATCH 00/16] Simple patches
From: Simon Richter, 2016-06-07
-
[PATCH 01/16] Fix spelling "propage" -> "propagate"
From: Simon Richter, 2016-06-07
-
[PATCH 02/16] Add missing dependency github_plugin -> pcbcommon
From: Simon Richter, 2016-06-07
-
[PATCH 03/16] Clarify ERC: we're iterating netlist items, not nets
From: Simon Richter, 2016-06-07
-
[PATCH 04/16] Explain how ERC works.
From: Simon Richter, 2016-06-07
-
[PATCH 05/16] Cache netlist item during ERC
From: Simon Richter, 2016-06-07
-
[PATCH 06/16] Check sorting of netlist during ERC
From: Simon Richter, 2016-06-07
-
[PATCH 07/16] Kill unused NETLIST_EXPORTER_GENERIC::writeListOfNets
From: Simon Richter, 2016-06-07
-
[PATCH 08/16] Drop extra copy ctors from IFSG_NODE
From: Simon Richter, 2016-06-07
-
[PATCH 09/16] Replace boost::shared_ptr with std::shared_ptr
From: Simon Richter, 2016-06-07
-
[PATCH 10/16] Replace unshared boost::shared_array with std::unique_ptr
From: Simon Richter, 2016-06-07
-
[PATCH 11/16] Clarify ownership semantics
From: Simon Richter, 2016-06-07