From b58fa5b855f29811012fe4dc381009d808f5f22e Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Sat, 21 Apr 2012 17:45:46 -0700 Subject: [PATCH] 'code review' comment --- tokenizer.d | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tokenizer.d b/tokenizer.d index 99aa3a8..a9c1fbd 100644 --- a/tokenizer.d +++ b/tokenizer.d @@ -163,12 +163,12 @@ string lexDelimitedString(S)(ref S inputString, ref size_t endIndex, string open = inputString[endIndex .. endIndex + 1]; string close; bool nesting = false; - switch (open) + switch (open[0]) { - case "[": close = "]"; ++endIndex; nesting = true; break; - case "<": close = ">"; ++endIndex; nesting = true; break; - case "{": close = "}"; ++endIndex; nesting = true; break; - case "(": close = ")"; ++endIndex; nesting = true; break; + case '[': close = "]"; ++endIndex; nesting = true; break; + case '<': close = ">"; ++endIndex; nesting = true; break; + case '{': close = "}"; ++endIndex; nesting = true; break; + case '(': close = ")"; ++endIndex; nesting = true; break; default: while(!isWhite(inputString[endIndex])) endIndex++; close = open = inputString[startIndex + 1 .. endIndex];