1
0
Fork 0

DBG+EXE+GUI: fixed some more sonar warnings

This commit is contained in:
Duncan Ogilvie 2017-10-08 20:19:32 +02:00
parent 05c9223d0a
commit 103866eafe
No known key found for this signature in database
GPG Key ID: FC89E0AAA0C1AAD8
6 changed files with 8 additions and 8 deletions

View File

@ -6,11 +6,11 @@
#include "assemble.h"
#include "memory.h"
#include "XEDParse\XEDParse.h"
#include "XEDParse/XEDParse.h"
#include "value.h"
#include "disasm_fast.h"
#include "disasm_helper.h"
#include "keystone\keystone.h"
#include "keystone/keystone.h"
#include "datainst_helper.h"
#include "debugger.h"

View File

@ -4,7 +4,7 @@
@brief Implements runtime database saving and loading.
*/
#include "lz4\lz4file.h"
#include "lz4/lz4file.h"
#include "console.h"
#include "breakpoint.h"
#include "patches.h"

View File

@ -2,7 +2,7 @@
#define _DEBUGGER_H
#include "_global.h"
#include "TitanEngine\TitanEngine.h"
#include "TitanEngine/TitanEngine.h"
#include "command.h"
#include "breakpoint.h"
#include "_plugins.h"

View File

@ -7,7 +7,7 @@
#include <stdio.h>
#include <windows.h>
#include "crashdump.h"
#include "..\bridge\bridgemain.h"
#include "../bridge/bridgemain.h"
#include "LoadResourceString.h"
/**

View File

@ -3068,7 +3068,7 @@ void RegistersView::displayCustomContextMenuSlot(QPoint pos)
return;
QMenu wMenu(this);
QMenu* followInDumpNMenu = nullptr;
const QAction* selectedAction;
const QAction* selectedAction = nullptr;
switch(wSIMDRegDispMode)
{
case SIMD_REG_DISP_HEX:

View File

@ -2,10 +2,10 @@
#define IMPORTS_H
#ifndef _BRIDGEMAIN_H_
#include "bridge\bridgemain.h"
#include "bridge/bridgemain.h"
#endif
#ifndef _DBGFUNCTIONS_H
#include "dbg\_dbgfunctions.h"
#include "dbg/_dbgfunctions.h"
#endif
#ifndef _DBG_TYPES_H_
#include "dbg_types.h"