diff options
author | Ryan Harrison <rharrison@chromium.org> | 2018-06-01 15:28:54 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-06-01 15:28:54 +0000 |
commit | d60d7cb936ea50a0dfab26372f3a8958f84250e7 (patch) | |
tree | 94a17b83ba7f2e6ff5715f15727e01d3a95e4cd9 /core/fxcrt/fx_bidi.h | |
parent | 4f21d77576b371270375f1120cba5cf99c248e9d (diff) | |
download | pdfium-d60d7cb936ea50a0dfab26372f3a8958f84250e7.tar.xz |
Fix XFA guards
These guards are using #if, when they should be using #ifdef. Caught
using Clang's static analyzer.
Change-Id: I86e99c5e4142cf84fff5f2365ad534f09ae40511
Reviewed-on: https://pdfium-review.googlesource.com/33510
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Commit-Queue: Ryan Harrison <rharrison@chromium.org>
Diffstat (limited to 'core/fxcrt/fx_bidi.h')
-rw-r--r-- | core/fxcrt/fx_bidi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fxcrt/fx_bidi.h b/core/fxcrt/fx_bidi.h index 54d5255e3e..79a2ddd417 100644 --- a/core/fxcrt/fx_bidi.h +++ b/core/fxcrt/fx_bidi.h @@ -72,7 +72,7 @@ class CFX_BidiString { CFX_BidiChar::Direction m_eOverallDirection = CFX_BidiChar::LEFT; }; -#if PDF_ENABLE_XFA +#ifdef PDF_ENABLE_XFA void FX_BidiLine(std::vector<CFX_Char>* chars, size_t iCount); #endif // PDF_ENABLE_XFA |