Remove use of vector/string from core project

* This also affects the drivers via interfaces e.g. IReplayDriver and some
  utility functions.
This commit is contained in:
baldurk
2019-12-04 18:09:37 +00:00
parent c4ca8cb1d1
commit bd9f4fc389
114 changed files with 1222 additions and 1296 deletions
+2 -2
View File
@@ -26,9 +26,9 @@
#include "hooks.h"
#include "common/common.h"
static std::vector<LibraryHook *> &LibList()
static rdcarray<LibraryHook *> &LibList()
{
static std::vector<LibraryHook *> libs;
static rdcarray<LibraryHook *> libs;
return libs;
}