diff options
author | Ryan Harrison <rharrison@chromium.org> | 2018-01-04 14:43:27 -0500 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-01-04 20:19:41 +0000 |
commit | c560a8c11a6f8ee239e570db8c022ae0fd2a4db5 (patch) | |
tree | 0c16389f7e5c5e29c57a9c7f77dd062fa07d8640 /third_party | |
parent | df0a749452d933e4f434e2a33112667f1880db34 (diff) | |
download | pdfium-c560a8c11a6f8ee239e570db8c022ae0fd2a4db5.tar.xz |
Convert usages of pdfium::Optional to Optional
Change-Id: I29769f78eaad10c6a8b79e27524336c4f330377e
Reviewed-on: https://pdfium-review.googlesource.com/22258
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: Ryan Harrison <rharrison@chromium.org>
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/base/optional.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/third_party/base/optional.h b/third_party/base/optional.h index ae25724e73..f92101c19b 100644 --- a/third_party/base/optional.h +++ b/third_party/base/optional.h @@ -503,4 +503,7 @@ struct hash<pdfium::Optional<T>> { } // namespace std +template <class T> +using Optional = pdfium::Optional<T>; + #endif // PDFIUM_THIRD_PARTY_BASE_OPTIONAL_H_ |