Browse Source

Formatting.

6.0.7
Jeff Young 5 years ago
parent
commit
34ea6891b0
  1. 4
      pcbnew/exporters/gendrill_file_writer_base.cpp
  2. 2
      pcbnew/exporters/gendrill_gerber_writer.cpp

4
pcbnew/exporters/gendrill_file_writer_base.cpp

@ -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 );

2
pcbnew/exporters/gendrill_gerber_writer.cpp

@ -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…
Cancel
Save