diff options
author | jaseg <git@jaseg.de> | 2021-09-29 16:39:52 +0200 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2021-09-29 16:39:52 +0200 |
commit | a511e7dc82ec447352e0a424bfee554cfa6a2435 (patch) | |
tree | a51be5d29086ebdd0e9faa1a934261edc7ee8153 /svg-flatten | |
parent | d406b1f1d08ef1c47a717d54e466709434d16684 (diff) | |
download | gerbolyze-a511e7dc82ec447352e0a424bfee554cfa6a2435.tar.gz gerbolyze-a511e7dc82ec447352e0a424bfee554cfa6a2435.tar.bz2 gerbolyze-a511e7dc82ec447352e0a424bfee554cfa6a2435.zip |
svg-flatten: Remove leftover debug print in svg_color.c
Diffstat (limited to 'svg-flatten')
-rw-r--r-- | svg-flatten/src/svg_color.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svg-flatten/src/svg_color.cpp b/svg-flatten/src/svg_color.cpp index ef2336d..637a65f 100644 --- a/svg-flatten/src/svg_color.cpp +++ b/svg-flatten/src/svg_color.cpp @@ -31,7 +31,7 @@ using namespace std; * them. */ enum gerber_color gerbolyze::svg_color_to_gerber(string color, string opacity, enum gerber_color default_val, const RenderSettings &rset) { - cerr << "resolving svg color spec color=\"" << color << "\", opacity=\"" << opacity << "\", default=" << default_val << endl; + //cerr << "resolving svg color spec color=\"" << color << "\", opacity=\"" << opacity << "\", default=" << default_val << endl; float alpha = 1.0; if (!opacity.empty() && opacity[0] != '\0') { char *endptr = nullptr; |