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]
This commit is contained in:
rdb 2022-10-24 13:43:29 +02:00
parent accd130c83
commit 9a53a3bf31

View File

@ -72,10 +72,10 @@ public:
typedef std::map<std::string, CPPManifest *> Manifests;
Manifests _manifests;
typedef pvector<CPPManifest *> ManifestStack;
typedef std::vector<CPPManifest *> ManifestStack;
std::map<std::string, ManifestStack> _manifest_stack;
pvector<CPPFile::Source> _quote_include_kind;
std::vector<CPPFile::Source> _quote_include_kind;
DSearchPath _quote_include_path;
DSearchPath _angle_include_path;
bool _noangles;