From 9a53a3bf3194ed9559722e465c660dd24b7ec5df Mon Sep 17 00:00:00 2001 From: rdb Date: Mon, 24 Oct 2022 13:43:29 +0200 Subject: [PATCH] cppparser: Fix an instance of pvector being used instead of `std::vector` Also see #539 (but doesn't fully resolve this case because DSearchPath also uses pvector) [skip ci] --- dtool/src/cppparser/cppPreprocessor.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dtool/src/cppparser/cppPreprocessor.h b/dtool/src/cppparser/cppPreprocessor.h index 3102386fee..92986cf4c8 100644 --- a/dtool/src/cppparser/cppPreprocessor.h +++ b/dtool/src/cppparser/cppPreprocessor.h @@ -72,10 +72,10 @@ public: typedef std::map Manifests; Manifests _manifests; - typedef pvector ManifestStack; + typedef std::vector ManifestStack; std::map _manifest_stack; - pvector _quote_include_kind; + std::vector _quote_include_kind; DSearchPath _quote_include_path; DSearchPath _angle_include_path; bool _noangles;