1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-22 00:35:15 +00:00
freebsd-ports/cad/kicad/files/patch-eeschema_sch_line.cpp
Thierry Thomas ee93a49cbc It seems that FreeBSD-9.2 does'nt like 'std::__1'...
Reported by:	Jenkins via swills
2014-05-04 10:57:52 +00:00

21 lines
679 B
C++

--- eeschema/sch_line.cpp.orig 2013-03-09 21:07:56.000000000 +0100
+++ eeschema/sch_line.cpp 2014-05-01 18:54:48.000000000 +0200
@@ -467,7 +467,7 @@
}
-void SCH_LINE::GetConnectionPoints( vector< wxPoint >& aPoints ) const
+void SCH_LINE::GetConnectionPoints( std::vector< wxPoint >& aPoints ) const
{
aPoints.push_back( m_start );
aPoints.push_back( m_end );
@@ -522,7 +522,7 @@
}
-void SCH_LINE::GetNetListItem( vector<NETLIST_OBJECT*>& aNetListItems,
+void SCH_LINE::GetNetListItem( std::vector<NETLIST_OBJECT*>& aNetListItems,
SCH_SHEET_PATH* aSheetPath )
{
// Net list item not required for graphic lines.