Browse Source

* Removed unneeded var assignment.

git-svn-id: trunk@35536 -
yury 8 years ago
parent
commit
2387ea1ee0
1 changed files with 1 additions and 2 deletions
  1. 1 2
      compiler/scanner.pas

+ 1 - 2
compiler/scanner.pas

@@ -5336,7 +5336,6 @@ exit_label:
       var
       var
         low,high,mid: longint;
         low,high,mid: longint;
         optoken: ttoken;
         optoken: ttoken;
-        s : string;
       begin
       begin
          skipspace;
          skipspace;
          case c of
          case c of
@@ -5375,7 +5374,7 @@ exit_label:
              end;
              end;
            '''' :
            '''' :
              begin
              begin
-               s:=readquotedstring;
+               readquotedstring;
                current_scanner.preproc_pattern:=cstringpattern;
                current_scanner.preproc_pattern:=cstringpattern;
                readpreproc:=_CSTRING;
                readpreproc:=_CSTRING;
              end;
              end;