Commit f8cb3f07 by John Kessenich

Add EbtInt and EbtuInt to isIntegerDomain().

The previous merge needs this hole filled, but filling it as a separate commit.
parent 60575de7
...@@ -1369,12 +1369,14 @@ public: ...@@ -1369,12 +1369,14 @@ public:
virtual bool isIntegerDomain() const virtual bool isIntegerDomain() const
{ {
switch (basicType) { switch (basicType) {
case EbtInt8:
case EbtUint8:
case EbtInt16:
case EbtUint16:
case EbtInt: case EbtInt:
case EbtUint: case EbtUint:
case EbtInt64: case EbtInt64:
case EbtUint64: case EbtUint64:
case EbtInt16:
case EbtUint16:
case EbtAtomicUint: case EbtAtomicUint:
return true; return true;
default: default:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment