Selaa lähdekoodia

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]
rdb 3 vuotta sitten
vanhempi
sitoutus
9a53a3bf31
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2 2
      dtool/src/cppparser/cppPreprocessor.h

+ 2 - 2
dtool/src/cppparser/cppPreprocessor.h

@@ -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;