Move the #include<tuple> to where it should be in the header file as

opposed to the cpp
This commit is contained in:
Luke De Mouy
2016-01-12 02:26:06 -07:00
parent 4645d2fa20
commit aec5ce9aeb
2 changed files with 1 additions and 1 deletions

View File

@@ -7,7 +7,6 @@
#include "sysadm-firewall.h"
#include <QtCore>
#include <algorithm>
#include <tuple>
using namespace sysadm;
PortInfo Firewall::LookUpPort(int port, QString type)

View File

@@ -7,6 +7,7 @@
#ifndef PORTLOOKUP_H
#define PORTLOOKUP_H
#include <QtCore>
#include <tuple>
namespace sysadm
{
struct PortInfo{