Merge pull request #40 from MartinNowak/master

fix for lookup change in 2.071.0
This commit is contained in:
Ferdinand Majerech 2016-03-12 23:09:46 +01:00
commit a8f12bc2e9

View file

@ -67,6 +67,9 @@ align(4) struct ScalarAnalysis
///Quickly determines if a character is a newline.
private mixin FastCharSearch!"\n\u0085\u2028\u2029"d newlineSearch_;
// override the canFind added by the FastCharSearch mixins
private alias canFind = std.algorithm.canFind;
//Emits YAML events into a file/stream.
struct Emitter
{