Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions core/src/datamatrix/DMBitMatrixParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
#include "DecodeStatus.h"
#include "ByteArray.h"

#include <stdexcept>

namespace ZXing {
namespace DataMatrix {

Expand Down
1 change: 1 addition & 0 deletions core/src/oned/ODCode128Writer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

#include <list>
#include <numeric>
#include <stdexcept>

namespace ZXing {
namespace OneD {
Expand Down
1 change: 1 addition & 0 deletions core/src/oned/ODCode39Writer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#include "ZXStrConvWorkaround.h"

#include <array>
#include <stdexcept>

namespace ZXing {
namespace OneD {
Expand Down
1 change: 1 addition & 0 deletions core/src/oned/ODCode93Writer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#include "ZXTestSupport.h"

#include <array>
#include <stdexcept>

namespace ZXing {
namespace OneD {
Expand Down
1 change: 1 addition & 0 deletions core/src/oned/ODITFWriter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
#include "ODWriterHelper.h"

#include <array>
#include <stdexcept>

namespace ZXing {
namespace OneD {
Expand Down
1 change: 1 addition & 0 deletions core/src/pdf417/PDFCodewordDecoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include <vector>
#include <numeric>
#include <limits>
#include <stdexcept>

namespace ZXing {
namespace Pdf417 {
Expand Down
1 change: 1 addition & 0 deletions core/src/pdf417/PDFEncoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#include <array>
#include <cmath>
#include <vector>
#include <stdexcept>

namespace ZXing {
namespace Pdf417 {
Expand Down
2 changes: 2 additions & 0 deletions core/src/qrcode/QRWriter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
#include "BitMatrix.h"
#include "CharacterSet.h"

#include <stdexcept>

namespace ZXing {
namespace QRCode {

Expand Down