summaryrefslogtreecommitdiff
path: root/idlc/inc/idlc/asttype.hxx
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2006-03-09 09:48:20 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2006-03-09 09:48:20 +0000
commitf970b9fb783f9a439c6bdd87b5ebe65136b2e83b (patch)
treef17f14d177f663ea40a14ff36c01e41bde2070dc /idlc/inc/idlc/asttype.hxx
parent572179c6ac717dc66da369248005830c13c5b176 (diff)
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.
Diffstat (limited to 'idlc/inc/idlc/asttype.hxx')
-rw-r--r--idlc/inc/idlc/asttype.hxx6
1 files changed, 4 insertions, 2 deletions
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_