We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abf1fe2 commit 323180eCopy full SHA for 323180e
2 files changed
dub.json
@@ -9,7 +9,7 @@
9
"excludedSourceFiles": ["source/main.d"],
10
"targetPath": "bin",
11
"dependencies": {
12
- "ggplotd": ">=0.4.13",
+ "ggplotd": ">=0.4.14",
13
"dunit": "~>1.0.11",
14
"docopt": ">=0.6.1-b.4"
15
},
source/plotcli/geom.d
@@ -11,6 +11,10 @@ private string generateToGeom()
{
//auto name = m.stringof;
static if (name.length > 6 && name[0..4] == "geom"
+ && name != "geomRectangle"
+ && name != "geomEllipse"
16
+ && name != "geomDiamond"
17
+ && name != "geomTriangle"
18
&& name != "geomAxis" )
19
20
str ~= "if (type == q{" ~ name[4..$].toLower ~ "})\n";
0 commit comments