From bc45405a15a78305fbc053a4762351e68c55c695 Mon Sep 17 00:00:00 2001 From: svenbarth Date: Mon, 2 May 2011 19:46:41 +0000 Subject: [PATCH] Added two TODOs for places that I'll need to adjust for inline specializations. git-svn-id: branches/svenbarth/generics@17395 - --- compiler/pexpr.pas | 2 ++ 1 file changed, 2 insertions(+) diff --git a/compiler/pexpr.pas b/compiler/pexpr.pas index c8b443f8bc..c0d2ab4bc5 100644 --- a/compiler/pexpr.pas +++ b/compiler/pexpr.pas @@ -1381,6 +1381,7 @@ implementation exit; end; { if nothing found give error and return errorsym } + { TODO : adjust this check for inline specializations } if assigned(srsym) and not ( { in case of an overloaded generic symbol we need to @@ -2871,6 +2872,7 @@ implementation _GT : p1:=caddnode.create(gtn,p1,p2); _LT : + { TODO : hook in here for inline specialization } p1:=caddnode.create(ltn,p1,p2); _GTE : p1:=caddnode.create(gten,p1,p2);