Remove some debugging messages.

This commit is contained in:
Alex Shvartzkop 2023-10-15 03:26:04 +03:00
parent d5d07e64c9
commit 254c8accc2
3 changed files with 0 additions and 6 deletions

View File

@ -767,8 +767,6 @@ bool STEP_PCB_MODEL::MakeShapes( std::vector<TopoDS_Shape>& aShapes, const SHAPE
&& aChain.IsArcSegment( aChain.PointCount() - 1 )
&& aChain.ArcIndex( 0 ) == aChain.ArcIndex( aChain.PointCount() - 1 ) )
{
std::cout << "Skip looping arc" << std::endl;
// Skip first arc (we should encounter it later)
int nextShape = aChain.NextShape( i );

View File

@ -116,14 +116,12 @@ const ALTIUM_RULE_TOKEN& ALTIUM_RULE_TOKENIZER::Next()
}
else if( curCh == '\'' )
{
std::cout << "start const string" << std::endl;
wxString constString;
while( m_it != m_expr.end() && nextCh != '\'' )
{
constString += nextCh; // TODO: escaping?
nextCh = nextChar();
}
std::cout << "end const string: " << constString << std::endl;
if( m_it != m_expr.end() )
{

View File

@ -96,8 +96,6 @@ std::unique_ptr<BOARD> ReadBoardFromFileOrStream( const std::string& aFilename,
std::istream* in_stream = nullptr;
std::ifstream file_stream;
printf("RD from %s\n", aFilename.c_str() );
if( aFilename.empty() )
{
// no file, read stdin