android: Update app-specific/MIME type icons
[LibreOffice.git] / external / zxing / invalid_argument.patch.1
blob66794583c19c55c50962cdf2debede2897c32923
1 From 302e8210b865576b35164f48bd57e003f6674dd1 Mon Sep 17 00:00:00 2001
2 From: FalsinSoft <falsinsoft@gmail.com>
3 Date: Wed, 11 Jan 2023 20:58:04 +0100
4 Subject: [PATCH] Fixed 'invalid_argument' is not a member of 'std' error on
5  Visual Studio
7 ---
8  core/src/Matrix.h | 1 +
9  1 file changed, 1 insertion(+)
11 diff --git a/core/src/Matrix.h b/core/src/Matrix.h
12 index 8b04bb1af..0c7c4e88b 100644
13 --- a/core/src/Matrix.h
14 +++ b/core/src/Matrix.h
15 @@ -9,6 +9,7 @@
16  #include "Point.h"
17  #include "ZXAlgorithms.h"
19 +#include <stdexcept>
20  #include <algorithm>
21  #include <cassert>
22  #include <vector>