Skip to content

Commit

Permalink
fixed missing/wrong #include's
Browse files Browse the repository at this point in the history
  • Loading branch information
jkriege2 committed Jan 22, 2024
1 parent bf89200 commit 1d01368
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/jkqtcommon/jkqtpcsstools.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include "jkqtcommon/jkqtpcsstools.h"
#include "jkqtcommon/jkqtpstringtools.h"
#include "jkqtcommon/jkqtpcodestructuring.h"
#include <exception>
#include <stdexcept>
#include <QMetaEnum>
#include <QSet>
#include <QVector>
Expand Down
2 changes: 1 addition & 1 deletion lib/jkqtcommon/jkqtpexpected.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#ifndef JKQTPEXPECTED_H_INCLUDED
#define JKQTPEXPECTED_H_INCLUDED

#include <exception>
#include <stdexcept>


/** \brief tag type for an unexpected/error result in JKQTPExpected
Expand Down
2 changes: 1 addition & 1 deletion lib/jkqtmath/jkqtpstatpoly.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
#include "jkqtmath/jkqtplinalgtools.h"
#include "jkqtmath/jkqtparraytools.h"
#include "jkqtcommon/jkqtpdebuggingtools.h"

#include <stdexcept>



Expand Down
2 changes: 1 addition & 1 deletion lib/jkqtmath/jkqtpstatregression.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@


#include "jkqtpstatregression.h"

#include <stdexcept>

std::function<double (double, double, double)> jkqtpStatGenerateRegressionModel(JKQTPStatRegressionModelType type) {
switch(type) {
Expand Down
1 change: 1 addition & 0 deletions lib/jkqtplotter/graphs/jkqtpevaluatedfunction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#include <stdlib.h>
#include <QDebug>
#include <iostream>
#include <stdexcept>
#include "jkqtplotter/jkqtptools.h"
#include "jkqtplotter/graphs/jkqtpimage.h"
#include "jkqtplotter/jkqtpbaseelements.h"
Expand Down
2 changes: 1 addition & 1 deletion lib/jkqtplotter/graphs/jkqtpstatisticsadaptors.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#include "jkqtplotter/graphs/jkqtpstatisticsadaptors.h"
#include "jkqtplotter/jkqtplotter.h"
#include "jkqtplotter/jkqtpgraphsbase.h"

#include <stdexcept>

JKQTPXFunctionLineGraph *jkqtpstatAddLinearRegression(JKQTPXYGraph *datagraph, double *coeffA, double *coeffB, bool fixA, bool fixB) {
JKQTBasePlotter* plt=datagraph->getParent();
Expand Down
2 changes: 1 addition & 1 deletion lib/jkqtplotter/jkqtpdatastorage.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
#include <QStringList>
#include <QAbstractTableModel>
#include <QObject>

#include <stdexcept>

class JKQTPColumn; // forward declaration
class JKQTPColumnIterator; // forward declaration
Expand Down

0 comments on commit 1d01368

Please sign in to comment.