소스 검색

* use new expression store for rvalue of constant declarations. Patch by Anton, Mantis 19403

git-svn-id: trunk@17543 -
marco 14 년 전
부모
커밋
3d86949990
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      utils/fpdoc/dw_html.pp

+ 1 - 1
utils/fpdoc/dw_html.pp

@@ -2644,7 +2644,7 @@ begin
     AppendSym(CodeEl, ': ');
     AppendType(CodeEl, TableEl, AConst.VarType, False);
   end;
-  AppendPasSHFragment(CodeEl, ' = ' + AConst.Value + ';', 0);
+  AppendPasSHFragment(CodeEl, ' = ' + AConst.Expr.GetDeclaration(True) + ';', 0);
 
   FinishElementPage(AConst);
 end;