aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sdlang/lexer.d
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2016-08-22 10:31:34 -0400
committerRalph Amissah <ralph@amissah.com>2019-04-04 14:53:41 -0400
commit39b78293cbab8ce9df020a6754d3aae6624dab71 (patch)
tree319fb68bbea334377dde13644247153ff20315d7 /src/sdlang/lexer.d
parentstep 0.6.3 includes fixes (diff)
sdlang uses lexer.d which uses stream.d which phobos is to drop 2016-10
* stream & its depends: src/undead/stream.d src/undead/internal/file.d src/undead/doformat.d * https://github.com/DigitalMars/undeaD/blob/master/src/undead/
Diffstat (limited to 'src/sdlang/lexer.d')
-rw-r--r--src/sdlang/lexer.d4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/sdlang/lexer.d b/src/sdlang/lexer.d
index 6eeeac2..91e0a7d 100644
--- a/src/sdlang/lexer.d
+++ b/src/sdlang/lexer.d
@@ -10,13 +10,15 @@ import std.bigint;
import std.conv;
import std.datetime;
import std.file;
-import std.stream : ByteOrderMarks, BOM;
+// import std.stream : ByteOrderMarks, BOM;
import std.traits;
import std.typecons;
import std.uni;
import std.utf;
import std.variant;
+import undead.stream : ByteOrderMarks, BOM;
+
import sdlang.exception;
import sdlang.symbol;
import sdlang.token;