blob: 5414ea44d2ff888b00df0517914ee04249e783b8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- 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.
|