summaryrefslogtreecommitdiffstats
path: root/lib/Checker/CastToStructChecker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Checker/CastToStructChecker.cpp')
-rw-r--r--lib/Checker/CastToStructChecker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Checker/CastToStructChecker.cpp b/lib/Checker/CastToStructChecker.cpp
index 2c16f89..eeaed97 100644
--- a/lib/Checker/CastToStructChecker.cpp
+++ b/lib/Checker/CastToStructChecker.cpp
@@ -51,7 +51,7 @@ void CastToStructChecker::PreVisitCastExpr(CheckerContext &C,
QualType OrigPointeeTy = OrigPTy->getPointeeType();
QualType ToPointeeTy = ToPTy->getPointeeType();
- if (!ToPointeeTy->isStructureType())
+ if (!ToPointeeTy->isStructureOrClassType())
return;
// We allow cast from void*.
OpenPOWER on IntegriCloud