From 2cbde19ec4804b7b9636af955154a8776885fd36 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Tue, 5 May 2015 12:46:54 -0700 Subject: [PATCH] Fix #214 --- src/actypes.d | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/actypes.d b/src/actypes.d index c1fce50..e696e30 100644 --- a/src/actypes.d +++ b/src/actypes.d @@ -756,5 +756,9 @@ static this() ucent_.type = ucent_; builtinSymbols.insert(void_); void_.type = void_; + + + foreach (s; ["__DATE__", "__EOF__", "__TIME__", "__TIMESTAMP__", "__VENDOR__", "__VERSION__"]) + builtinSymbols.insert(allocate!ACSymbol(Mallocator.it, internString(s), CompletionKind.keyword)); }