mirror of
https://github.com/67-6f-64/AntiOreans-CodeDevirtualizer
synced 2026-06-08 10:18:33 +00:00
12 lines
300 B
C++
12 lines
300 B
C++
#include "fish_context.hpp"
|
|
|
|
void fish_context::clear()
|
|
{
|
|
this->wild_context::clear();
|
|
|
|
memset(this->fish_operands, 0, sizeof(this->fish_operands));
|
|
|
|
this->initialized_push_pop_mnemonics = false;
|
|
this->initialized_unary_mnemonics = false;
|
|
this->initialized_binary_mnemonics = false;
|
|
} |