mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-05 05:18:40 +00:00
require data field members when looking for links w/ list lens; config node ptr lists need dll
This commit is contained in:
@@ -8,6 +8,7 @@
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <unordered_map>
|
||||
#include <memory>
|
||||
#if !_WIN32
|
||||
# define RADDBG_MARKUP_STUBS
|
||||
@@ -663,6 +664,13 @@ type_coverage_eval_tests(void)
|
||||
int_vector.push_back(6);
|
||||
int_vector.push_back(7);
|
||||
|
||||
std::unordered_map<std::string, int> people =
|
||||
{
|
||||
{"Peter", 1},
|
||||
{"Oliver", 2},
|
||||
{"Jack", 3},
|
||||
};
|
||||
|
||||
std::vector<int> *pint_vector = &int_vector;
|
||||
std::vector<int> &rint_vector = int_vector;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user