cppparser: Consider reference types destructible

Fixes #1743
This commit is contained in:
rdb 2025-07-28 11:09:07 +02:00
parent 6a9dde43da
commit 7d7a08e66f
1 changed files with 1 additions and 1 deletions

View File

@ -187,7 +187,7 @@ is_copy_constructible() const {
*/
bool CPPReferenceType::
is_destructible() const {
return false;
return true;
}
/**