Skip to content

Commit

Permalink
add missing include
Browse files Browse the repository at this point in the history
  • Loading branch information
felixguendling committed May 9, 2024
1 parent a32d491 commit f9bf4bd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/conf/date_time.h
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
#pragma once

#include <cinttypes>
#include <ctime>
#include <istream>
#include <ostream>

namespace conf {

struct time {
int64_t unix_time_{};
std::int64_t unix_time_{};
};

std::time_t parse_date_time(std::string const&);
Expand Down

0 comments on commit f9bf4bd

Please sign in to comment.