this should be abstract

This commit is contained in:
John L. Singleton
2021-06-10 19:54:58 -04:00
parent 219dc71ae6
commit cd61fb4753

View File

@@ -66,7 +66,7 @@ class Ptrdiff_t extends Type {
/**
* A parent class representing C/C++ a typedef'd `UserType` such as `int8_t`.
*/
private class IntegralUnderlyingUserType extends UserType {
private abstract class IntegralUnderlyingUserType extends UserType {
IntegralUnderlyingUserType() { this.getUnderlyingType() instanceof IntegralType }
}