forgotten includes

This commit is contained in:
VaclavT 2022-01-05 13:01:26 +01:00
parent df3fcaab27
commit e4b80c9cb7
4 changed files with 5 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

@ -1,5 +1,6 @@
#include "ml_date.h"
#include <cstring>
long now() { // get-universal-time
time_t t = std::time(nullptr);

View File

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