1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-25 11:41:35 +01:00

Fix more build issues on appveyor

This commit is contained in:
Matias Fontanini
2017-05-08 21:51:27 -07:00
parent bd0db1354e
commit b0d66a01d2
5 changed files with 12 additions and 6 deletions

View File

@@ -57,6 +57,7 @@
#include <fstream>
#include <stdexcept>
#include "network_interface.h"
#include "exceptions.h"
using std::vector;
using std::string;
@@ -319,7 +320,7 @@ vector<Route6Entry> route6_entries() {
entry.metric = row->Metric;
output.push_back(entry);
}
catch (invalid_interface&) {
catch (const invalid_interface&) {
}
}