diff options
author | tsepez <tsepez@chromium.org> | 2016-04-21 12:09:41 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-04-21 12:09:41 -0700 |
commit | df964dfb34e648e27dce7bef785b204894a7058a (patch) | |
tree | 5b0e31ca677aad571fc1fbd67c0e5e57d21cdc03 /core/fxcrt/include | |
parent | d00a91229690e453cb7f2eed652d81e864b27d2a (diff) | |
download | pdfium-df964dfb34e648e27dce7bef785b204894a7058a.tar.xz |
Replace CFX_RectArray with std::vector<CFX_FloatRect>
Use RVO now that we use an array type compatible with it.
Review URL: https://codereview.chromium.org/1906903002
Diffstat (limited to 'core/fxcrt/include')
-rw-r--r-- | core/fxcrt/include/fx_coordinates.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/fxcrt/include/fx_coordinates.h b/core/fxcrt/include/fx_coordinates.h index a7f0b8d5dc..ec6b41c869 100644 --- a/core/fxcrt/include/fx_coordinates.h +++ b/core/fxcrt/include/fx_coordinates.h @@ -310,7 +310,6 @@ class CFX_FloatRect { FX_FLOAT right; FX_FLOAT top; }; -using CFX_RectArray = CFX_ArrayTemplate<CFX_FloatRect>; // LTWH rectangles (y-axis runs downwards). template <class baseType> |