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.
This commit is contained in:
Rüdiger Timm
2006-03-09 09:48:20 +00:00
parent 572179c6ac
commit f970b9fb78

View File

@@ -4,9 +4,9 @@
* *
* $RCSfile: asttype.hxx,v $ * $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 Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1. * the terms of GNU Lesser General Public License Version 2.1.
@@ -47,6 +47,8 @@ public:
{} {}
virtual ~AstType() {} virtual ~AstType() {}
virtual bool isUnsigned() const { return false; }
}; };
#endif // _IDLC_ASTTYPE_HXX_ #endif // _IDLC_ASTTYPE_HXX_