From 14e9d7fbc2a935ec9c2e6eb9d68e8d250f9614d4 Mon Sep 17 00:00:00 2001 From: jaseg Date: Sat, 18 Jun 2022 17:29:27 +0200 Subject: svg-flatten: add drill handling to outline mode --- svg-flatten/src/out_sexp.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'svg-flatten/src/out_sexp.cpp') diff --git a/svg-flatten/src/out_sexp.cpp b/svg-flatten/src/out_sexp.cpp index 1a7f1d0..6760920 100644 --- a/svg-flatten/src/out_sexp.cpp +++ b/svg-flatten/src/out_sexp.cpp @@ -135,6 +135,10 @@ KicadSexpOutput &KicadSexpOutput::operator<<(const Polygon &poly) { return *this; } +KicadSexpOutput &KicadSexpOutput::operator<<(const DrillToken &tok) { + return *this; +} + void KicadSexpOutput::footer_impl() { m_out << ")" << endl; } -- cgit