From c3914c1f3890927e435904370c1330f312bcfb00 Mon Sep 17 00:00:00 2001 From: pierre Date: Thu, 8 Nov 2018 20:19:54 +0000 Subject: [PATCH] Downgrade EXTDEBUG warning to note about zero size temp, as it is used for empty sets git-svn-id: trunk@40278 - --- compiler/tgobj.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/tgobj.pas b/compiler/tgobj.pas index b2f6345ae6..016843a3c6 100644 --- a/compiler/tgobj.pas +++ b/compiler/tgobj.pas @@ -266,7 +266,7 @@ implementation if size=0 then begin {$ifdef EXTDEBUG} - Comment(V_Warning,'tgobj: (AllocTemp) temp of size 0 requested, allocating 4 bytes'); + Comment(V_Note,'tgobj: (AllocTemp) temp of size 0 requested, allocating 4 bytes'); {$endif} size:=4; end;