Fix #163
This commit is contained in:
parent
5f62054f38
commit
ddbe485c40
|
@ -412,8 +412,8 @@ public struct DLexer
|
||||||
|
|
||||||
private static bool isDocComment(string comment) pure nothrow @safe
|
private static bool isDocComment(string comment) pure nothrow @safe
|
||||||
{
|
{
|
||||||
return comment.length >= 3 && (comment[2] == '/'
|
return comment.length >= 3 && (comment[0 .. 3] == "///"
|
||||||
|| comment[2] == '*' || comment[2] == '+');
|
|| comment[0 .. 3] == "/++" || comment[0 .. 3] == "/**");
|
||||||
}
|
}
|
||||||
|
|
||||||
public void popFront() pure
|
public void popFront() pure
|
||||||
|
|
Loading…
Reference in New Issue