diff options
Diffstat (limited to 'lib/StaticAnalyzer/Store.cpp')
-rw-r--r-- | lib/StaticAnalyzer/Store.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/StaticAnalyzer/Store.cpp b/lib/StaticAnalyzer/Store.cpp index d162eed247..fa671a3bb0 100644 --- a/lib/StaticAnalyzer/Store.cpp +++ b/lib/StaticAnalyzer/Store.cpp @@ -147,7 +147,7 @@ const MemRegion *StoreManager::CastRegion(const MemRegion *R, QualType CastToTy) if (!baseR) return NULL; - CharUnits off = CharUnits::fromQuantity(rawOff.getByteOffset()); + CharUnits off = rawOff.getOffset(); if (off.isZero()) { // Edge case: we are at 0 bytes off the beginning of baseR. We |