浏览代码

* 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;