Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/ggplotd/colour.d
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ auto namedColour(in string name)
try
{
colour = colorFromString(name).toColourSpace!RGB;
} catch {}
} catch (Throwable) {}
return colour;
}

Expand Down
3 changes: 2 additions & 1 deletion source/ggplotd/stat.d
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,8 @@ auto statDensity2D(AES)( AES aesRange )
import std.array : array;
import std.conv : to;
import std.range : chain, front, iota, zip;
import std.typecons : Erase, tuple, Tuple;
import std.meta : Erase;
import std.typecons : tuple, Tuple;
import ggplotd.aes : Aes, group, DefaultGroupFields;
import ggplotd.algorithm : safeMin, safeMax;
import ggplotd.range : mergeRange;
Expand Down