MCPcopy Create free account
hub / github.com/GDRETools/gdsdecomp / get_errors

Method get_errors

utility/gdre_logger.cpp:166–174  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

164}
165
166Vector<String> GDRELogger::get_errors() {
167 Vector<String> errors;
168 String tmp;
169 while (error_queue.try_pop(tmp)) {
170 errors.push_back(tmp);
171 }
172 thread_error_queue.clear();
173 return errors;
174}
175
176Vector<String> GDRELogger::get_thread_errors() {
177 Vector<String> errors = thread_error_queue;

Callers 2

test_exported_projectMethod · 0.45

Calls 3

push_backMethod · 0.80
try_popMethod · 0.45
clearMethod · 0.45

Tested by 1

test_exported_projectMethod · 0.36