summaryrefslogtreecommitdiff
path: root/core/src/fpdfdoc
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2015-10-19 12:00:05 -0700
committerLei Zhang <thestig@chromium.org>2015-10-19 12:00:05 -0700
commitaff4635dad81bc319266d9d84b81552580cd2b65 (patch)
tree0a071983cbcd7a50db4c4865099a8f6e93192123 /core/src/fpdfdoc
parent6101a5f98b27888f1736ae74982ed4d409d83be0 (diff)
downloadpdfium-aff4635dad81bc319266d9d84b81552580cd2b65.tar.xz
Sanity check the values of TRUE and FALSE.
Get rid of cond ? TRUE : FALSE. R=tsepez@chromium.org Review URL: https://codereview.chromium.org/1405723003 .
Diffstat (limited to 'core/src/fpdfdoc')
-rw-r--r--core/src/fpdfdoc/doc_vt.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/fpdfdoc/doc_vt.cpp b/core/src/fpdfdoc/doc_vt.cpp
index 396a7d6b71..fe5680ff9b 100644
--- a/core/src/fpdfdoc/doc_vt.cpp
+++ b/core/src/fpdfdoc/doc_vt.cpp
@@ -430,7 +430,7 @@ static FX_BOOL IsLatin(FX_WORD word) {
return FALSE;
}
static FX_BOOL IsDigit(FX_DWORD word) {
- return (word >= 0x0030 && word <= 0x0039) ? TRUE : FALSE;
+ return word >= 0x0030 && word <= 0x0039;
}
static FX_BOOL IsCJK(FX_DWORD word) {
if ((word >= 0x1100 && word <= 0x11FF) ||
@@ -542,7 +542,7 @@ static FX_BOOL IsPrefixSymbol(FX_WORD word) {
return FALSE;
}
static FX_BOOL IsSpace(FX_WORD word) {
- return (word == 0x0020 || word == 0x3000) ? TRUE : FALSE;
+ return word == 0x0020 || word == 0x3000;
}
static FX_BOOL NeedDivision(FX_WORD prevWord, FX_WORD curWord) {
if ((IsLatin(prevWord) || IsDigit(prevWord)) &&