diff options
author | David Tardon <dtardon@redhat.com> | 2011-01-25 15:41:35 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2011-01-25 15:41:35 +0100 |
commit | a2cf60a2924518d62bfcebc72a0b6354c20f4bc9 (patch) | |
tree | fe7f385c0060172089ebfc9697603186f4bce4ca /vcl/source/fontsubset | |
parent | bc0a780816fe5ff844c8e69e9f0750e8d5b302d8 (diff) |
Revert "WaE: unused variables"
This reverts commit d06a2dd024d69dec873f1a59adbf7d5b372c39a1.
Diffstat (limited to 'vcl/source/fontsubset')
-rw-r--r-- | vcl/source/fontsubset/cff.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/vcl/source/fontsubset/cff.cxx b/vcl/source/fontsubset/cff.cxx index d2a2dc6dd8e6..b0c17df110b7 100644 --- a/vcl/source/fontsubset/cff.cxx +++ b/vcl/source/fontsubset/cff.cxx @@ -1751,9 +1751,7 @@ int CffSubsetterContext::getFDSelect( int nGlyphIndex) const const U16 nRangeCount = (pReadPtr[0]<<8) + pReadPtr[1]; assert( nRangeCount > 0); assert( nRangeCount <= mnCharStrCount); -#ifndef NDEBUG U16 nPrev = (pReadPtr[2]<<8) + pReadPtr[3]; -#endif assert( nPrev == 0); (void)nPrev; pReadPtr += 4; @@ -1765,9 +1763,7 @@ int CffSubsetterContext::getFDSelect( int nGlyphIndex) const if( nGlyphIndex < nNext) return nFDIdx; pReadPtr += 3; -#ifndef NDEBUG nPrev = nNext; -#endif } } break; default: // invalid FDselect format |