missing includes

This commit is contained in:
2022-01-05 14:34:57 +01:00
parent ebb69b6096
commit d275be643c
5 changed files with 7 additions and 1 deletions

View File

@@ -2,6 +2,6 @@
namespace usql {
Exception::Exception(std::string msg) : std::runtime_error(msg) {}
Exception::Exception(std::string msg) : std::runtime_error(msg) {};
} // namespace

View File

@@ -1,6 +1,8 @@
#pragma once
#include <string>
#include <stdexcept>
namespace usql {

View File

@@ -2,6 +2,7 @@
#include <string>
#include <map>
#include <vector>
namespace usql {