mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-27 07:03:36 -04:00
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:
parent
accd130c83
commit
9a53a3bf31
@ -72,10 +72,10 @@ public:
|
|||||||
typedef std::map<std::string, CPPManifest *> Manifests;
|
typedef std::map<std::string, CPPManifest *> Manifests;
|
||||||
Manifests _manifests;
|
Manifests _manifests;
|
||||||
|
|
||||||
typedef pvector<CPPManifest *> ManifestStack;
|
typedef std::vector<CPPManifest *> ManifestStack;
|
||||||
std::map<std::string, ManifestStack> _manifest_stack;
|
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 _quote_include_path;
|
||||||
DSearchPath _angle_include_path;
|
DSearchPath _angle_include_path;
|
||||||
bool _noangles;
|
bool _noangles;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user