summaryrefslogtreecommitdiffstats
path: root/src/common/break_points.cpp
diff options
context:
space:
mode:
authorKloen Lansfiel <kloen@outlawkiwi.com>2017-06-09 06:16:46 +0200
committerYuri Kunde Schlesner <yuriks@yuriks.net>2017-06-09 06:16:46 +0200
commit9a8a90b52b4a7254ad73afbd23605516c50c5417 (patch)
tree399c68032a7827850a197aae7c479e7cb202414a /src/common/break_points.cpp
parentMerge pull request #2756 from yuriks/service-framework (diff)
downloadyuzu-9a8a90b52b4a7254ad73afbd23605516c50c5417.tar
yuzu-9a8a90b52b4a7254ad73afbd23605516c50c5417.tar.gz
yuzu-9a8a90b52b4a7254ad73afbd23605516c50c5417.tar.bz2
yuzu-9a8a90b52b4a7254ad73afbd23605516c50c5417.tar.lz
yuzu-9a8a90b52b4a7254ad73afbd23605516c50c5417.tar.xz
yuzu-9a8a90b52b4a7254ad73afbd23605516c50c5417.tar.zst
yuzu-9a8a90b52b4a7254ad73afbd23605516c50c5417.zip
Diffstat (limited to 'src/common/break_points.cpp')
-rw-r--r--src/common/break_points.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/common/break_points.cpp b/src/common/break_points.cpp
index 03a19acba..fa367a4ca 100644
--- a/src/common/break_points.cpp
+++ b/src/common/break_points.cpp
@@ -5,7 +5,6 @@
#include <algorithm>
#include <sstream>
#include "common/break_points.h"
-#include "common/logging/log.h"
bool BreakPoints::IsAddressBreakPoint(u32 iAddress) const {
auto cond = [&iAddress](const TBreakPoint& bp) { return bp.iAddress == iAddress; };