diff options
| author | 2016-09-21 00:21:23 +0900 | |
|---|---|---|
| committer | 2016-09-21 11:15:47 +0900 | |
| commit | ebdae19fd226104baec712b9da9939ff82ef3c3a (patch) | |
| tree | e046c0f562fc4400480b2e3257f140e973a9ce6a /src/citra_qt/debugger | |
| parent | Manually tweak source formatting and then re-run clang-format (diff) | |
| download | yuzu-ebdae19fd226104baec712b9da9939ff82ef3c3a.tar.gz yuzu-ebdae19fd226104baec712b9da9939ff82ef3c3a.tar.xz yuzu-ebdae19fd226104baec712b9da9939ff82ef3c3a.zip | |
Remove empty newlines in #include blocks.
This makes clang-format useful on those.
Also add a bunch of forgotten transitive includes, which otherwise
prevented compilation.
Diffstat (limited to 'src/citra_qt/debugger')
21 files changed, 17 insertions, 63 deletions
diff --git a/src/citra_qt/debugger/callstack.cpp b/src/citra_qt/debugger/callstack.cpp index db266b506..14bd1c77c 100644 --- a/src/citra_qt/debugger/callstack.cpp +++ b/src/citra_qt/debugger/callstack.cpp | |||
| @@ -2,13 +2,10 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <QStandardItemModel> | ||
| 6 | |||
| 7 | #include "citra_qt/debugger/callstack.h" | 5 | #include "citra_qt/debugger/callstack.h" |
| 8 | 6 | #include <QStandardItemModel> | |
| 9 | #include "common/common_types.h" | 7 | #include "common/common_types.h" |
| 10 | #include "common/symbols.h" | 8 | #include "common/symbols.h" |
| 11 | |||
| 12 | #include "core/arm/arm_interface.h" | 9 | #include "core/arm/arm_interface.h" |
| 13 | #include "core/arm/disassembler/arm_disasm.h" | 10 | #include "core/arm/disassembler/arm_disasm.h" |
| 14 | #include "core/core.h" | 11 | #include "core/core.h" |
diff --git a/src/citra_qt/debugger/disassembler.cpp b/src/citra_qt/debugger/disassembler.cpp index 803e8b172..7a5d3e2f1 100644 --- a/src/citra_qt/debugger/disassembler.cpp +++ b/src/citra_qt/debugger/disassembler.cpp | |||
| @@ -2,16 +2,13 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include "citra_qt/debugger/disassembler.h" | ||
| 5 | #include <QShortcut> | 6 | #include <QShortcut> |
| 6 | |||
| 7 | #include "citra_qt/bootmanager.h" | 7 | #include "citra_qt/bootmanager.h" |
| 8 | #include "citra_qt/debugger/disassembler.h" | ||
| 9 | #include "citra_qt/hotkeys.h" | 8 | #include "citra_qt/hotkeys.h" |
| 10 | #include "citra_qt/util/util.h" | 9 | #include "citra_qt/util/util.h" |
| 11 | |||
| 12 | #include "common/break_points.h" | 10 | #include "common/break_points.h" |
| 13 | #include "common/symbols.h" | 11 | #include "common/symbols.h" |
| 14 | |||
| 15 | #include "core/arm/arm_interface.h" | 12 | #include "core/arm/arm_interface.h" |
| 16 | #include "core/arm/disassembler/arm_disasm.h" | 13 | #include "core/arm/disassembler/arm_disasm.h" |
| 17 | #include "core/core.h" | 14 | #include "core/core.h" |
diff --git a/src/citra_qt/debugger/disassembler.h b/src/citra_qt/debugger/disassembler.h index 1f5607788..2ca6c2bd4 100644 --- a/src/citra_qt/debugger/disassembler.h +++ b/src/citra_qt/debugger/disassembler.h | |||
| @@ -6,11 +6,9 @@ | |||
| 6 | 6 | ||
| 7 | #include <QAbstractListModel> | 7 | #include <QAbstractListModel> |
| 8 | #include <QDockWidget> | 8 | #include <QDockWidget> |
| 9 | |||
| 10 | #include "ui_disassembler.h" | ||
| 11 | |||
| 12 | #include "common/break_points.h" | 9 | #include "common/break_points.h" |
| 13 | #include "common/common_types.h" | 10 | #include "common/common_types.h" |
| 11 | #include "ui_disassembler.h" | ||
| 14 | 12 | ||
| 15 | class QAction; | 13 | class QAction; |
| 16 | class EmuThread; | 14 | class EmuThread; |
diff --git a/src/citra_qt/debugger/graphics.cpp b/src/citra_qt/debugger/graphics.cpp index b79c063db..31b54e855 100644 --- a/src/citra_qt/debugger/graphics.cpp +++ b/src/citra_qt/debugger/graphics.cpp | |||
| @@ -2,9 +2,8 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <QListView> | ||
| 6 | |||
| 7 | #include "citra_qt/debugger/graphics.h" | 5 | #include "citra_qt/debugger/graphics.h" |
| 6 | #include <QListView> | ||
| 8 | #include "citra_qt/util/util.h" | 7 | #include "citra_qt/util/util.h" |
| 9 | 8 | ||
| 10 | extern GraphicsDebugger g_debugger; | 9 | extern GraphicsDebugger g_debugger; |
diff --git a/src/citra_qt/debugger/graphics.h b/src/citra_qt/debugger/graphics.h index 7d681b97d..bedf3e596 100644 --- a/src/citra_qt/debugger/graphics.h +++ b/src/citra_qt/debugger/graphics.h | |||
| @@ -6,7 +6,6 @@ | |||
| 6 | 6 | ||
| 7 | #include <QAbstractListModel> | 7 | #include <QAbstractListModel> |
| 8 | #include <QDockWidget> | 8 | #include <QDockWidget> |
| 9 | |||
| 10 | #include "video_core/gpu_debugger.h" | 9 | #include "video_core/gpu_debugger.h" |
| 11 | 10 | ||
| 12 | class GPUCommandStreamItemModel : public QAbstractListModel, | 11 | class GPUCommandStreamItemModel : public QAbstractListModel, |
diff --git a/src/citra_qt/debugger/graphics_breakpoint_observer.cpp b/src/citra_qt/debugger/graphics_breakpoint_observer.cpp index 25a398ece..ad11552d7 100644 --- a/src/citra_qt/debugger/graphics_breakpoint_observer.cpp +++ b/src/citra_qt/debugger/graphics_breakpoint_observer.cpp | |||
| @@ -2,9 +2,8 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <QMetaType> | ||
| 6 | |||
| 7 | #include "citra_qt/debugger/graphics_breakpoint_observer.h" | 5 | #include "citra_qt/debugger/graphics_breakpoint_observer.h" |
| 6 | #include <QMetaType> | ||
| 8 | 7 | ||
| 9 | BreakPointObserverDock::BreakPointObserverDock(std::shared_ptr<Pica::DebugContext> debug_context, | 8 | BreakPointObserverDock::BreakPointObserverDock(std::shared_ptr<Pica::DebugContext> debug_context, |
| 10 | const QString& title, QWidget* parent) | 9 | const QString& title, QWidget* parent) |
diff --git a/src/citra_qt/debugger/graphics_breakpoint_observer.h b/src/citra_qt/debugger/graphics_breakpoint_observer.h index 8d0871f27..e77df4f5b 100644 --- a/src/citra_qt/debugger/graphics_breakpoint_observer.h +++ b/src/citra_qt/debugger/graphics_breakpoint_observer.h | |||
| @@ -5,7 +5,6 @@ | |||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <QDockWidget> | 7 | #include <QDockWidget> |
| 8 | |||
| 9 | #include "video_core/debug_utils/debug_utils.h" | 8 | #include "video_core/debug_utils/debug_utils.h" |
| 10 | 9 | ||
| 11 | /** | 10 | /** |
diff --git a/src/citra_qt/debugger/graphics_breakpoints.cpp b/src/citra_qt/debugger/graphics_breakpoints.cpp index b31eba533..e1d1b4911 100644 --- a/src/citra_qt/debugger/graphics_breakpoints.cpp +++ b/src/citra_qt/debugger/graphics_breakpoints.cpp | |||
| @@ -2,15 +2,13 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include "citra_qt/debugger/graphics_breakpoints.h" | ||
| 5 | #include <QLabel> | 6 | #include <QLabel> |
| 6 | #include <QMetaType> | 7 | #include <QMetaType> |
| 7 | #include <QPushButton> | 8 | #include <QPushButton> |
| 8 | #include <QTreeView> | 9 | #include <QTreeView> |
| 9 | #include <QVBoxLayout> | 10 | #include <QVBoxLayout> |
| 10 | |||
| 11 | #include "citra_qt/debugger/graphics_breakpoints.h" | ||
| 12 | #include "citra_qt/debugger/graphics_breakpoints_p.h" | 11 | #include "citra_qt/debugger/graphics_breakpoints_p.h" |
| 13 | |||
| 14 | #include "common/assert.h" | 12 | #include "common/assert.h" |
| 15 | 13 | ||
| 16 | BreakPointModel::BreakPointModel(std::shared_ptr<Pica::DebugContext> debug_context, QObject* parent) | 14 | BreakPointModel::BreakPointModel(std::shared_ptr<Pica::DebugContext> debug_context, QObject* parent) |
diff --git a/src/citra_qt/debugger/graphics_breakpoints.h b/src/citra_qt/debugger/graphics_breakpoints.h index 2371b0e39..5fc40c916 100644 --- a/src/citra_qt/debugger/graphics_breakpoints.h +++ b/src/citra_qt/debugger/graphics_breakpoints.h | |||
| @@ -5,9 +5,7 @@ | |||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <memory> | 7 | #include <memory> |
| 8 | |||
| 9 | #include <QDockWidget> | 8 | #include <QDockWidget> |
| 10 | |||
| 11 | #include "video_core/debug_utils/debug_utils.h" | 9 | #include "video_core/debug_utils/debug_utils.h" |
| 12 | 10 | ||
| 13 | class QLabel; | 11 | class QLabel; |
diff --git a/src/citra_qt/debugger/graphics_breakpoints_p.h b/src/citra_qt/debugger/graphics_breakpoints_p.h index 5f321ede2..dc64706bd 100644 --- a/src/citra_qt/debugger/graphics_breakpoints_p.h +++ b/src/citra_qt/debugger/graphics_breakpoints_p.h | |||
| @@ -5,9 +5,7 @@ | |||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <memory> | 7 | #include <memory> |
| 8 | |||
| 9 | #include <QAbstractListModel> | 8 | #include <QAbstractListModel> |
| 10 | |||
| 11 | #include "video_core/debug_utils/debug_utils.h" | 9 | #include "video_core/debug_utils/debug_utils.h" |
| 12 | 10 | ||
| 13 | class BreakPointModel : public QAbstractListModel { | 11 | class BreakPointModel : public QAbstractListModel { |
diff --git a/src/citra_qt/debugger/graphics_cmdlists.cpp b/src/citra_qt/debugger/graphics_cmdlists.cpp index b088ad29d..35be9b9bd 100644 --- a/src/citra_qt/debugger/graphics_cmdlists.cpp +++ b/src/citra_qt/debugger/graphics_cmdlists.cpp | |||
| @@ -2,6 +2,7 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include "citra_qt/debugger/graphics_cmdlists.h" | ||
| 5 | #include <QApplication> | 6 | #include <QApplication> |
| 6 | #include <QClipboard> | 7 | #include <QClipboard> |
| 7 | #include <QComboBox> | 8 | #include <QComboBox> |
| @@ -13,13 +14,9 @@ | |||
| 13 | #include <QSpinBox> | 14 | #include <QSpinBox> |
| 14 | #include <QTreeView> | 15 | #include <QTreeView> |
| 15 | #include <QVBoxLayout> | 16 | #include <QVBoxLayout> |
| 16 | |||
| 17 | #include "citra_qt/debugger/graphics_cmdlists.h" | ||
| 18 | #include "citra_qt/util/spinbox.h" | 17 | #include "citra_qt/util/spinbox.h" |
| 19 | #include "citra_qt/util/util.h" | 18 | #include "citra_qt/util/util.h" |
| 20 | |||
| 21 | #include "common/vector_math.h" | 19 | #include "common/vector_math.h" |
| 22 | |||
| 23 | #include "video_core/debug_utils/debug_utils.h" | 20 | #include "video_core/debug_utils/debug_utils.h" |
| 24 | #include "video_core/pica.h" | 21 | #include "video_core/pica.h" |
| 25 | #include "video_core/pica_state.h" | 22 | #include "video_core/pica_state.h" |
diff --git a/src/citra_qt/debugger/graphics_cmdlists.h b/src/citra_qt/debugger/graphics_cmdlists.h index b2242eca4..fa2b9122b 100644 --- a/src/citra_qt/debugger/graphics_cmdlists.h +++ b/src/citra_qt/debugger/graphics_cmdlists.h | |||
| @@ -6,7 +6,6 @@ | |||
| 6 | 6 | ||
| 7 | #include <QAbstractListModel> | 7 | #include <QAbstractListModel> |
| 8 | #include <QDockWidget> | 8 | #include <QDockWidget> |
| 9 | |||
| 10 | #include "video_core/debug_utils/debug_utils.h" | 9 | #include "video_core/debug_utils/debug_utils.h" |
| 11 | #include "video_core/gpu_debugger.h" | 10 | #include "video_core/gpu_debugger.h" |
| 12 | 11 | ||
diff --git a/src/citra_qt/debugger/graphics_surface.cpp b/src/citra_qt/debugger/graphics_surface.cpp index bb998acc4..496fce59d 100644 --- a/src/citra_qt/debugger/graphics_surface.cpp +++ b/src/citra_qt/debugger/graphics_surface.cpp | |||
| @@ -2,6 +2,7 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include "citra_qt/debugger/graphics_surface.h" | ||
| 5 | #include <QBoxLayout> | 6 | #include <QBoxLayout> |
| 6 | #include <QComboBox> | 7 | #include <QComboBox> |
| 7 | #include <QDebug> | 8 | #include <QDebug> |
| @@ -11,15 +12,10 @@ | |||
| 11 | #include <QPushButton> | 12 | #include <QPushButton> |
| 12 | #include <QScrollArea> | 13 | #include <QScrollArea> |
| 13 | #include <QSpinBox> | 14 | #include <QSpinBox> |
| 14 | |||
| 15 | #include "citra_qt/debugger/graphics_surface.h" | ||
| 16 | #include "citra_qt/util/spinbox.h" | 15 | #include "citra_qt/util/spinbox.h" |
| 17 | |||
| 18 | #include "common/color.h" | 16 | #include "common/color.h" |
| 19 | |||
| 20 | #include "core/hw/gpu.h" | 17 | #include "core/hw/gpu.h" |
| 21 | #include "core/memory.h" | 18 | #include "core/memory.h" |
| 22 | |||
| 23 | #include "video_core/pica.h" | 19 | #include "video_core/pica.h" |
| 24 | #include "video_core/pica_state.h" | 20 | #include "video_core/pica_state.h" |
| 25 | #include "video_core/utils.h" | 21 | #include "video_core/utils.h" |
diff --git a/src/citra_qt/debugger/graphics_surface.h b/src/citra_qt/debugger/graphics_surface.h index 5881ae60a..21e6b5b8b 100644 --- a/src/citra_qt/debugger/graphics_surface.h +++ b/src/citra_qt/debugger/graphics_surface.h | |||
| @@ -4,10 +4,9 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include "citra_qt/debugger/graphics_breakpoint_observer.h" | ||
| 8 | |||
| 9 | #include <QLabel> | 7 | #include <QLabel> |
| 10 | #include <QPushButton> | 8 | #include <QPushButton> |
| 9 | #include "citra_qt/debugger/graphics_breakpoint_observer.h" | ||
| 11 | 10 | ||
| 12 | class QComboBox; | 11 | class QComboBox; |
| 13 | class QSpinBox; | 12 | class QSpinBox; |
diff --git a/src/citra_qt/debugger/graphics_tracing.cpp b/src/citra_qt/debugger/graphics_tracing.cpp index b6f638b60..944150b8e 100644 --- a/src/citra_qt/debugger/graphics_tracing.cpp +++ b/src/citra_qt/debugger/graphics_tracing.cpp | |||
| @@ -2,29 +2,22 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include "citra_qt/debugger/graphics_tracing.h" | ||
| 5 | #include <algorithm> | 6 | #include <algorithm> |
| 6 | #include <array> | 7 | #include <array> |
| 7 | #include <iterator> | 8 | #include <iterator> |
| 8 | #include <memory> | 9 | #include <memory> |
| 9 | |||
| 10 | #include <boost/range/algorithm/copy.hpp> | ||
| 11 | |||
| 12 | #include <QBoxLayout> | 10 | #include <QBoxLayout> |
| 13 | #include <QComboBox> | 11 | #include <QComboBox> |
| 14 | #include <QFileDialog> | 12 | #include <QFileDialog> |
| 15 | #include <QMessageBox> | 13 | #include <QMessageBox> |
| 16 | #include <QPushButton> | 14 | #include <QPushButton> |
| 17 | 15 | #include <boost/range/algorithm/copy.hpp> | |
| 18 | #include "citra_qt/debugger/graphics_tracing.h" | ||
| 19 | |||
| 20 | #include "common/common_types.h" | 16 | #include "common/common_types.h" |
| 21 | |||
| 22 | #include "core/hw/gpu.h" | 17 | #include "core/hw/gpu.h" |
| 23 | #include "core/hw/lcd.h" | 18 | #include "core/hw/lcd.h" |
| 24 | #include "core/tracer/recorder.h" | 19 | #include "core/tracer/recorder.h" |
| 25 | |||
| 26 | #include "nihstro/float24.h" | 20 | #include "nihstro/float24.h" |
| 27 | |||
| 28 | #include "video_core/pica.h" | 21 | #include "video_core/pica.h" |
| 29 | #include "video_core/pica_state.h" | 22 | #include "video_core/pica_state.h" |
| 30 | 23 | ||
diff --git a/src/citra_qt/debugger/graphics_vertex_shader.cpp b/src/citra_qt/debugger/graphics_vertex_shader.cpp index 0f02bc3da..3b3ffe5c6 100644 --- a/src/citra_qt/debugger/graphics_vertex_shader.cpp +++ b/src/citra_qt/debugger/graphics_vertex_shader.cpp | |||
| @@ -2,9 +2,9 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include "citra_qt/debugger/graphics_vertex_shader.h" | ||
| 5 | #include <iomanip> | 6 | #include <iomanip> |
| 6 | #include <sstream> | 7 | #include <sstream> |
| 7 | |||
| 8 | #include <QBoxLayout> | 8 | #include <QBoxLayout> |
| 9 | #include <QFileDialog> | 9 | #include <QFileDialog> |
| 10 | #include <QFormLayout> | 10 | #include <QFormLayout> |
| @@ -15,10 +15,7 @@ | |||
| 15 | #include <QSignalMapper> | 15 | #include <QSignalMapper> |
| 16 | #include <QSpinBox> | 16 | #include <QSpinBox> |
| 17 | #include <QTreeView> | 17 | #include <QTreeView> |
| 18 | |||
| 19 | #include "citra_qt/debugger/graphics_vertex_shader.h" | ||
| 20 | #include "citra_qt/util/util.h" | 18 | #include "citra_qt/util/util.h" |
| 21 | |||
| 22 | #include "video_core/pica.h" | 19 | #include "video_core/pica.h" |
| 23 | #include "video_core/pica_state.h" | 20 | #include "video_core/pica_state.h" |
| 24 | #include "video_core/shader/shader.h" | 21 | #include "video_core/shader/shader.h" |
diff --git a/src/citra_qt/debugger/graphics_vertex_shader.h b/src/citra_qt/debugger/graphics_vertex_shader.h index 96692d82c..ec42f24bb 100644 --- a/src/citra_qt/debugger/graphics_vertex_shader.h +++ b/src/citra_qt/debugger/graphics_vertex_shader.h | |||
| @@ -5,11 +5,9 @@ | |||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <QAbstractTableModel> | 7 | #include <QAbstractTableModel> |
| 8 | 8 | #include <QTreeView> | |
| 9 | #include "citra_qt/debugger/graphics_breakpoint_observer.h" | 9 | #include "citra_qt/debugger/graphics_breakpoint_observer.h" |
| 10 | |||
| 11 | #include "nihstro/parser_shbin.h" | 10 | #include "nihstro/parser_shbin.h" |
| 12 | |||
| 13 | #include "video_core/shader/shader.h" | 11 | #include "video_core/shader/shader.h" |
| 14 | 12 | ||
| 15 | class QLabel; | 13 | class QLabel; |
diff --git a/src/citra_qt/debugger/profiler.cpp b/src/citra_qt/debugger/profiler.cpp index 97a377513..39d2d6e39 100644 --- a/src/citra_qt/debugger/profiler.cpp +++ b/src/citra_qt/debugger/profiler.cpp | |||
| @@ -2,13 +2,11 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include "citra_qt/debugger/profiler.h" | ||
| 5 | #include <QMouseEvent> | 6 | #include <QMouseEvent> |
| 6 | #include <QPainter> | 7 | #include <QPainter> |
| 7 | #include <QString> | 8 | #include <QString> |
| 8 | |||
| 9 | #include "citra_qt/debugger/profiler.h" | ||
| 10 | #include "citra_qt/util/util.h" | 9 | #include "citra_qt/util/util.h" |
| 11 | |||
| 12 | #include "common/common_types.h" | 10 | #include "common/common_types.h" |
| 13 | #include "common/microprofile.h" | 11 | #include "common/microprofile.h" |
| 14 | #include "common/profiler_reporting.h" | 12 | #include "common/profiler_reporting.h" |
diff --git a/src/citra_qt/debugger/profiler.h b/src/citra_qt/debugger/profiler.h index d0a90fdee..d8c6487aa 100644 --- a/src/citra_qt/debugger/profiler.h +++ b/src/citra_qt/debugger/profiler.h | |||
| @@ -7,11 +7,9 @@ | |||
| 7 | #include <QAbstractItemModel> | 7 | #include <QAbstractItemModel> |
| 8 | #include <QDockWidget> | 8 | #include <QDockWidget> |
| 9 | #include <QTimer> | 9 | #include <QTimer> |
| 10 | |||
| 11 | #include "ui_profiler.h" | ||
| 12 | |||
| 13 | #include "common/microprofile.h" | 10 | #include "common/microprofile.h" |
| 14 | #include "common/profiler_reporting.h" | 11 | #include "common/profiler_reporting.h" |
| 12 | #include "ui_profiler.h" | ||
| 15 | 13 | ||
| 16 | class ProfilerModel : public QAbstractItemModel { | 14 | class ProfilerModel : public QAbstractItemModel { |
| 17 | Q_OBJECT | 15 | Q_OBJECT |
diff --git a/src/citra_qt/debugger/registers.cpp b/src/citra_qt/debugger/registers.cpp index 87c8c3418..13842dac3 100644 --- a/src/citra_qt/debugger/registers.cpp +++ b/src/citra_qt/debugger/registers.cpp | |||
| @@ -2,11 +2,9 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <QTreeWidgetItem> | ||
| 6 | |||
| 7 | #include "citra_qt/debugger/registers.h" | 5 | #include "citra_qt/debugger/registers.h" |
| 6 | #include <QTreeWidgetItem> | ||
| 8 | #include "citra_qt/util/util.h" | 7 | #include "citra_qt/util/util.h" |
| 9 | |||
| 10 | #include "core/arm/arm_interface.h" | 8 | #include "core/arm/arm_interface.h" |
| 11 | #include "core/core.h" | 9 | #include "core/core.h" |
| 12 | 10 | ||
diff --git a/src/citra_qt/debugger/registers.h b/src/citra_qt/debugger/registers.h index cba601731..54c9a8155 100644 --- a/src/citra_qt/debugger/registers.h +++ b/src/citra_qt/debugger/registers.h | |||
| @@ -2,9 +2,8 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include "ui_registers.h" | ||
| 6 | |||
| 7 | #include <QDockWidget> | 5 | #include <QDockWidget> |
| 6 | #include "ui_registers.h" | ||
| 8 | 7 | ||
| 9 | class QTreeWidget; | 8 | class QTreeWidget; |
| 10 | class QTreeWidgetItem; | 9 | class QTreeWidgetItem; |