From f970b9fb783f9a439c6bdd87b5ebe65136b2e83b Mon Sep 17 00:00:00 2001 From: RĂ¼diger Timm Date: Thu, 9 Mar 2006 09:48:20 +0000 Subject: INTEGRATION: CWS jl31 (1.2.18); FILE MERGED 2006/02/20 15:58:27 sb 1.2.18.1: #i62339# Forbid any unsigned types (i.e., not just UNSIGNED SHORT/LONG/HYPER, but also sequences of such) as type arguments of instantiated polymorphic struct types. --- idlc/inc/idlc/asttype.hxx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'idlc/inc') diff --git a/idlc/inc/idlc/asttype.hxx b/idlc/inc/idlc/asttype.hxx index bd25f8737ff9..1220ad025500 100644 --- a/idlc/inc/idlc/asttype.hxx +++ b/idlc/inc/idlc/asttype.hxx @@ -4,9 +4,9 @@ * * $RCSfile: asttype.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: rt $ $Date: 2005-09-07 18:02:20 $ + * last change: $Author: rt $ $Date: 2006-03-09 10:48:20 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -47,6 +47,8 @@ public: {} virtual ~AstType() {} + + virtual bool isUnsigned() const { return false; } }; #endif // _IDLC_ASTTYPE_HXX_ -- cgit