diff options
author | tsepez <tsepez@chromium.org> | 2016-11-03 06:10:26 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-11-03 06:10:26 -0700 |
commit | 304bb91238d6909cb5e170f8fc483aa7862558d5 (patch) | |
tree | 5183cddcd2bf05354c5cb424e18f57eb56780dea /fxjs/fxjse.h | |
parent | d19e912dd469e4bdad9f3020e1f6eb98f10f3470 (diff) | |
download | pdfium-304bb91238d6909cb5e170f8fc483aa7862558d5.tar.xz |
Remove FX_BOOL entirely.
FX_BOOL was a type just like a regular C++ bool, except that it
took 4x the space and frequently was used to hold values besides
true or false.
Review-Url: https://codereview.chromium.org/2471353002
Diffstat (limited to 'fxjs/fxjse.h')
-rw-r--r-- | fxjs/fxjse.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fxjs/fxjse.h b/fxjs/fxjse.h index 0ba285d746..069a3b29a3 100644 --- a/fxjs/fxjse.h +++ b/fxjs/fxjse.h @@ -28,9 +28,9 @@ typedef void (*FXJSE_PropAccessor)(CFXJSE_Value* pObject, CFXJSE_Value* pValue); typedef int32_t (*FXJSE_PropTypeGetter)(CFXJSE_Value* pObject, const CFX_ByteStringC& szPropName, - FX_BOOL bQueryIn); -typedef FX_BOOL (*FXJSE_PropDeleter)(CFXJSE_Value* pObject, - const CFX_ByteStringC& szPropName); + bool bQueryIn); +typedef bool (*FXJSE_PropDeleter)(CFXJSE_Value* pObject, + const CFX_ByteStringC& szPropName); enum FXJSE_ClassPropTypes { FXJSE_ClassPropType_None, |