diff options
Diffstat (limited to 'xfa/fxjse/runtime.h')
-rw-r--r-- | xfa/fxjse/runtime.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/xfa/fxjse/runtime.h b/xfa/fxjse/runtime.h index 43629e3771..1240089be4 100644 --- a/xfa/fxjse/runtime.h +++ b/xfa/fxjse/runtime.h @@ -7,6 +7,8 @@ #ifndef XFA_FXJSE_RUNTIME_H_ #define XFA_FXJSE_RUNTIME_H_ +#include <vector> + #include "core/fxcrt/include/fx_basic.h" #include "v8/include/v8.h" @@ -45,7 +47,7 @@ class CFXJSE_RuntimeList { void RemoveAllRuntimes(RuntimeDisposeCallback lpfnDisposeCallback); protected: - CFX_ArrayTemplate<v8::Isolate*> m_RuntimeList; + std::vector<v8::Isolate*> m_RuntimeList; }; #endif // XFA_FXJSE_RUNTIME_H_ |