require data field members when looking for links w/ list lens; config node ptr lists need dll

This commit is contained in:
Ryan Fleury
2025-10-16 15:57:43 -07:00
parent 0f277d6e6e
commit 52680a81fe
3 changed files with 14 additions and 2 deletions
+8
View File
@@ -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;