Formatting.
This commit is contained in:
parent
675ec70f0f
commit
34ea6891b0
|
@ -237,7 +237,7 @@ std::vector<DRILL_LAYER_PAIR> GENDRILL_WRITER_BASE::getUniqueLayerPairs() const
|
|||
|
||||
ret.emplace_back( F_Cu, B_Cu ); // always first in returned list
|
||||
|
||||
for( std::set< DRILL_LAYER_PAIR >::const_iterator it = unique.begin(); it != unique.end(); ++it )
|
||||
for( std::set<DRILL_LAYER_PAIR>::const_iterator it = unique.begin(); it != unique.end(); ++it )
|
||||
ret.push_back( *it );
|
||||
|
||||
return ret;
|
||||
|
@ -270,7 +270,7 @@ const std::string GENDRILL_WRITER_BASE::layerPairName( DRILL_LAYER_PAIR aPair )
|
|||
|
||||
|
||||
const wxString GENDRILL_WRITER_BASE::getDrillFileName( DRILL_LAYER_PAIR aPair, bool aNPTH,
|
||||
bool aMerge_PTH_NPTH ) const
|
||||
bool aMerge_PTH_NPTH ) const
|
||||
{
|
||||
wxASSERT( m_pcb );
|
||||
|
||||
|
|
|
@ -291,7 +291,7 @@ void GERBER_WRITER::SetFormat( int aRightDigits )
|
|||
|
||||
|
||||
const wxString GERBER_WRITER::getDrillFileName( DRILL_LAYER_PAIR aPair, bool aNPTH,
|
||||
bool aMerge_PTH_NPTH ) const
|
||||
bool aMerge_PTH_NPTH ) const
|
||||
{
|
||||
// Gerber files extension is always .gbr.
|
||||
// Therefore, to mark drill files, add "-drl" to the filename.
|
||||
|
|
Loading…
Reference in New Issue