summaryrefslogtreecommitdiff
path: root/xfa/fxfa/fm2js/xfa_lexer.h
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2017-04-17 11:30:25 -0700
committerChromium commit bot <commit-bot@chromium.org>2017-04-18 13:22:37 +0000
commit0f9b0a9d72a46cf708866aebc5f1103087b3d2c2 (patch)
treeaa6d9bb1cac9851f2a2cb6b144c20ab2e7fd3da3 /xfa/fxfa/fm2js/xfa_lexer.h
parentcec01808e8b155f598b2a9ea527736ce774e76a2 (diff)
downloadpdfium-0f9b0a9d72a46cf708866aebc5f1103087b3d2c2.tar.xz
Require unique_ptr arg for CXFA_FMLexer::SetToken()
Change-Id: Id252b3b2208ac9f792220605ddc1eb3ba29e2d55 Reviewed-on: https://pdfium-review.googlesource.com/4260 Commit-Queue: dsinclair <dsinclair@chromium.org> Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/fm2js/xfa_lexer.h')
-rw-r--r--xfa/fxfa/fm2js/xfa_lexer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/xfa/fxfa/fm2js/xfa_lexer.h b/xfa/fxfa/fm2js/xfa_lexer.h
index 860c50f30a..100f757dc0 100644
--- a/xfa/fxfa/fm2js/xfa_lexer.h
+++ b/xfa/fxfa/fm2js/xfa_lexer.h
@@ -8,6 +8,7 @@
#define XFA_FXFA_FM2JS_XFA_LEXER_H_
#include <memory>
+#include <utility>
#include "core/fxcrt/fx_string.h"
#include "xfa/fxfa/fm2js/xfa_error.h"
@@ -113,9 +114,8 @@ class CXFA_FMLexer {
void Comment(const wchar_t* p, const wchar_t*& pEnd);
XFA_FM_TOKEN IsKeyword(const CFX_WideStringC& p);
void SetCurrentLine(uint32_t line) { m_uCurrentLine = line; }
- void SetToken(CXFA_FMToken* pToken) {
- if (m_pToken.get() != pToken)
- m_pToken.reset(pToken);
+ void SetToken(std::unique_ptr<CXFA_FMToken> pToken) {
+ m_pToken = std::move(pToken);
}
const wchar_t* SavePos() { return m_ptr; }
void RestorePos(const wchar_t* pPos) { m_ptr = pPos; }