forgotten includes
This commit is contained in:
parent
df3fcaab27
commit
e4b80c9cb7
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1,6 +1,8 @@
|
|||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include <stdexcept>
|
||||
|
||||
|
||||
namespace usql {
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
|
||||
#include "ml_date.h"
|
||||
#include <cstring>
|
||||
|
||||
long now() { // get-universal-time
|
||||
time_t t = std::time(nullptr);
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
#include <string>
|
||||
#include <map>
|
||||
#include <vector>
|
||||
|
||||
namespace usql {
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue