aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/3rdparty/yaml-cpp/src/scanner.h
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2023-08-25 12:55:14 +0200
committerEike Ziller <eike.ziller@qt.io>2023-08-28 06:29:55 +0000
commit6c9d4a60e00cd00712d739746d9ded34876901a9 (patch)
tree0e5bc434b9aa451c725f8d37f5cbe571b9c76335 /src/libs/3rdparty/yaml-cpp/src/scanner.h
parentbe54b3db2f4356d477b372bd4528415f2fa57e85 (diff)
Update yaml-cpp to 0.8.0
With removal of unneeded files similar to the original import, the patch in patches/0001-... generated with git format-patch -D HEAD~1 to show just the removed files. Change-Id: Ibfe64439bae5d1b1baa6b6bc47caf1ae030b3f9d Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: David Schulz <david.schulz@qt.io>
Diffstat (limited to 'src/libs/3rdparty/yaml-cpp/src/scanner.h')
-rw-r--r--src/libs/3rdparty/yaml-cpp/src/scanner.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/libs/3rdparty/yaml-cpp/src/scanner.h b/src/libs/3rdparty/yaml-cpp/src/scanner.h
index 7bb2ccc71a..4af938e69c 100644
--- a/src/libs/3rdparty/yaml-cpp/src/scanner.h
+++ b/src/libs/3rdparty/yaml-cpp/src/scanner.h
@@ -9,9 +9,7 @@
#include <cstddef>
#include <ios>
-#include <map>
#include <queue>
-#include <set>
#include <stack>
#include <string>
@@ -49,7 +47,7 @@ class Scanner {
enum INDENT_TYPE { MAP, SEQ, NONE };
enum STATUS { VALID, INVALID, UNKNOWN };
IndentMarker(int column_, INDENT_TYPE type_)
- : column(column_), type(type_), status(VALID), pStartToken(0) {}
+ : column(column_), type(type_), status(VALID), pStartToken(nullptr) {}
int column;
INDENT_TYPE type;