diff options
Diffstat (limited to 'svg-flatten/src/out_sexp.cpp')
-rw-r--r-- | svg-flatten/src/out_sexp.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
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; } |