소스 검색

* formatting

florian 3 주 전
부모
커밋
dbf18e9d29
1개의 변경된 파일2개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 3
      compiler/nset.pas

+ 2 - 3
compiler/nset.pas

@@ -433,10 +433,9 @@ implementation
     constructor trangenode.create(l,r : tnode);
       var
         value: string;
-
       begin
-         { if right is char and left is string then }
-         { right should be treated as one-symbol string }
+         { if right is char and left is string then
+           right should be treated as one-symbol string }
          if is_conststringnode(l) and is_constcharnode(r) then
            begin
              value := char(tordconstnode(r).value.uvalue) + ''#0;