mirror of
https://github.com/JakeHillion/object-introspection.git
synced 2024-11-12 21:56:54 +00:00
tbv2: change instruction stack from deque to vector
This commit is contained in:
parent
cc6c7bf21f
commit
6f3580143e
@ -44,12 +44,15 @@ class IntrospectionResult {
|
||||
const_iterator operator++(int);
|
||||
|
||||
private:
|
||||
using stack_t =
|
||||
std::stack<exporters::inst::Inst, std::vector<exporters::inst::Inst>>;
|
||||
|
||||
const_iterator(std::vector<uint8_t>::const_iterator data,
|
||||
exporters::inst::Inst type);
|
||||
const_iterator(std::vector<uint8_t>::const_iterator data);
|
||||
|
||||
std::vector<uint8_t>::const_iterator data_;
|
||||
std::stack<exporters::inst::Inst> stack_;
|
||||
stack_t stack_;
|
||||
std::optional<result::Element> next_;
|
||||
|
||||
std::vector<std::string_view> type_path_;
|
||||
|
Loading…
Reference in New Issue
Block a user