summaryrefslogtreecommitdiff
path: root/core/fxcrt/fx_string.h
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2017-03-28 14:09:43 -0700
committerChromium commit bot <commit-bot@chromium.org>2017-03-28 21:28:39 +0000
commit3bb57514867a2bd10ba535e0b06de566a58d8085 (patch)
tree8c3019986ee23a0bec05955f861cee3b73b3770d /core/fxcrt/fx_string.h
parent022ded02d2c23a8d043bbcb3d3f37dab12636759 (diff)
downloadpdfium-3bb57514867a2bd10ba535e0b06de566a58d8085.tar.xz
Ensure that CFX_RetainPtr move ctor is used by std::vector.
Add a test for one of our types that fails unless this is the case. Mark all our other move ctors as |noexcept|. Change-Id: Ib106f219183d5abf94504af420a43c94b8f40e22 Reviewed-on: https://pdfium-review.googlesource.com/3251 Commit-Queue: Tom Sepez <tsepez@chromium.org> Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'core/fxcrt/fx_string.h')
-rw-r--r--core/fxcrt/fx_string.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/fxcrt/fx_string.h b/core/fxcrt/fx_string.h
index 12304eb452..494633e41d 100644
--- a/core/fxcrt/fx_string.h
+++ b/core/fxcrt/fx_string.h
@@ -36,7 +36,7 @@ class CFX_ByteString {
CFX_ByteString();
CFX_ByteString(const CFX_ByteString& other);
- CFX_ByteString(CFX_ByteString&& other);
+ CFX_ByteString(CFX_ByteString&& other) noexcept;
// Deliberately implicit to avoid calling on every string literal.
// NOLINTNEXTLINE(runtime/explicit)
@@ -235,7 +235,7 @@ class CFX_WideString {
CFX_WideString();
CFX_WideString(const CFX_WideString& other);
- CFX_WideString(CFX_WideString&& other);
+ CFX_WideString(CFX_WideString&& other) noexcept;
// Deliberately implicit to avoid calling on every string literal.
// NOLINTNEXTLINE(runtime/explicit)