Skip to content

Commit

Permalink
fixed 1 warning about static.
Browse files Browse the repository at this point in the history
  • Loading branch information
lab313ru committed Oct 22, 2024
1 parent a0c1c6d commit c19b46c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Gensida/ida/ida_debug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ void stop_server() {
server->Shutdown(); //std::chrono::system_clock::now() + std::chrono::milliseconds(100));
}

static class cond_break_t : public exec_request_t {
class cond_break_t : public exec_request_t {
uint32 elang = 0;
const char* cond = nullptr;
public:
Expand Down
8 changes: 4 additions & 4 deletions Gensida/ida/ida_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -141,10 +141,6 @@ static void print_insn(insn_t* insn)
}
}

static __inline ea_t dw_ea(ea_t addr) {
return (addr & 0xFFFFFFFF);
}

static void print_op(ea_t ea, op_t* op)
{
if (my_dbg)
Expand Down Expand Up @@ -896,6 +892,10 @@ static bool ask_assembler() {
return res == 1;
}

static __inline ea_t dw_ea(ea_t addr) {
return (addr & 0xFFFFFFFF);
}


static ssize_t idaapi process_asm_output(void* user_data, int notification_code, va_list va) {
switch (notification_code) {
Expand Down

0 comments on commit c19b46c

Please sign in to comment.