File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -92,24 +92,28 @@ void MarkAsLive(Type &&) {}
92
92
template <typename TypeToPrint> void ComparePrettyPrintToChars (
93
93
TypeToPrint value,
94
94
const char *expectation) {
95
+ MarkAsLive (value);
95
96
StopForDebugger (&value, &expectation);
96
97
}
97
98
98
99
template <typename TypeToPrint> void ComparePrettyPrintToRegex (
99
100
TypeToPrint value,
100
101
const char *expectation) {
102
+ MarkAsLive (value);
101
103
StopForDebugger (&value, &expectation);
102
104
}
103
105
104
106
void CompareExpressionPrettyPrintToChars (
105
107
std::string value,
106
108
const char *expectation) {
109
+ MarkAsLive (value);
107
110
StopForDebugger (&value, &expectation);
108
111
}
109
112
110
113
void CompareExpressionPrettyPrintToRegex (
111
114
std::string value,
112
115
const char *expectation) {
116
+ MarkAsLive (value);
113
117
StopForDebugger (&value, &expectation);
114
118
}
115
119
You can’t perform that action at this time.
0 commit comments