Skip to content

Commit

Permalink
add includes
Browse files Browse the repository at this point in the history
  • Loading branch information
Murmele authored and 0verEngineer committed Dec 15, 2023
1 parent 73fb281 commit f216d4d
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/app/CustomTheme.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
#include <QProxyStyle>
#include <QStandardPaths>
#include <QStyleOptionButton>
#include <stdexcept>

namespace {

Expand Down
1 change: 1 addition & 0 deletions src/app/Theme.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
#include <QProxyStyle>
#include <QStyleOption>
#include <QWidget>
#include <stdexcept>

namespace {

Expand Down
1 change: 1 addition & 0 deletions src/conf/Settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
#include <QRegularExpression>
#include <QSettings>
#include <QStandardPaths>
#include <stdexcept>

#ifdef Q_OS_WIN
#define CS Qt::CaseInsensitive
Expand Down
1 change: 1 addition & 0 deletions src/git/Diff.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
#include "Debug.h"
#include "git2/patch.h"
#include <algorithm>
#include <stdexcept>

bool containsPath(QString &str, QString &occurence, Qt::CaseSensitivity cs) {
if (str.contains(occurence, cs)) {
Expand Down
1 change: 1 addition & 0 deletions src/host/Account.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#include <QPalette>
#include <QSettings>
#include <qnetworkaccessmanager.h>
#include <stdexcept>

namespace {

Expand Down
2 changes: 2 additions & 0 deletions src/index/Index.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
#include <QSettings>
#include <QtConcurrent>

#include <stdexcept>

namespace {

const QString kLogKey = "debug/indexer";
Expand Down
2 changes: 2 additions & 0 deletions src/plugins/Plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
#include <QCoreApplication>
#include <QTextStream>

#include <stdexcept>

extern "C" {
#include "lua.h"
#include "lauxlib.h"
Expand Down

0 comments on commit f216d4d

Please sign in to comment.