Add missing includes

This commit is contained in:
Victor Zverovich 2020-08-19 15:18:24 -07:00
parent 92a448a071
commit 06895a7687
3 changed files with 5 additions and 0 deletions

View File

@ -8,7 +8,9 @@
#ifndef FMT_CHRONO_H_
#define FMT_CHRONO_H_
#include <algorithm>
#include <chrono>
#include <cmath>
#include <ctime>
#include <locale>
#include <sstream>

View File

@ -37,6 +37,7 @@
#include <cerrno>
#include <cmath>
#include <cstdint>
#include <cstring>
#include <limits>
#include <memory>
#include <stdexcept>

View File

@ -9,7 +9,9 @@
#define FMT_PRINTF_H_
#include <algorithm> // std::max
#include <cstdint>
#include <limits> // std::numeric_limits
#include <string>
#include "ostream.h"