aboutsummaryrefslogtreecommitdiff
path: root/fxbarcode/cfx_barcode.cpp
diff options
context:
space:
mode:
authorkumarashishg <kumarashishg@google.com>2023-09-27 10:46:51 +0000
committerkumarashishg <kumarashishg@google.com>2023-09-27 10:50:34 +0000
commitc9a8e744a91219fda0827d81ff650e9940ad3a24 (patch)
tree5fbebb9b63b922969aa2ff57532740cd790c7bfc /fxbarcode/cfx_barcode.cpp
parent6405ac73f02c42a7a59751d50b89b0f9bccd743c (diff)
downloadpdfium-c9a8e744a91219fda0827d81ff650e9940ad3a24.tar.gz
Updated pdfium to df6fed9f3cbc13b656562b4775ea330c91732c71 (Chrome 117.0.5938.60)
Bug: 301504387 Test: Build the code, flash the device and check if it is working fine Change-Id: If3540f2e20a31c43516adaab8851f2ad215208f8
Diffstat (limited to 'fxbarcode/cfx_barcode.cpp')
-rw-r--r--fxbarcode/cfx_barcode.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/fxbarcode/cfx_barcode.cpp b/fxbarcode/cfx_barcode.cpp
index f7cd5f60d..5b2c1346c 100644
--- a/fxbarcode/cfx_barcode.cpp
+++ b/fxbarcode/cfx_barcode.cpp
@@ -18,8 +18,8 @@
#include "fxbarcode/cbc_pdf417i.h"
#include "fxbarcode/cbc_qrcode.h"
#include "fxbarcode/cbc_upca.h"
+#include "third_party/base/memory/ptr_util.h"
#include "third_party/base/notreached.h"
-#include "third_party/base/ptr_util.h"
namespace {
@@ -50,8 +50,7 @@ std::unique_ptr<CBC_CodeBase> CreateBarCodeEngineObject(BC_TYPE type) {
case BC_TYPE::kUnknown:
return nullptr;
}
- NOTREACHED();
- return nullptr;
+ NOTREACHED_NORETURN();
}
} // namespace