tle: include ctime to make clang on FreeBSD 12 happy

Without the include, time_t is not defined.
pull/31/head
Josef 'Jeff' Sipek 2019-10-30 20:37:48 -04:00
parent a03ce6d76a
commit 3b2268af04
1 changed files with 1 additions and 0 deletions

1
tle.hh
View File

@ -2,6 +2,7 @@
#include <string> #include <string>
#include <map> #include <map>
#include <memory> #include <memory>
#include <ctime>
class SGP4; class SGP4;
class Tle; class Tle;