2018-01-06 17:09:50 +00:00
|
|
|
// Formatting library for C++ - time formatting
|
|
|
|
//
|
2018-11-26 00:10:05 +00:00
|
|
|
// Copyright (c) 2012 - present, Victor Zverovich
|
2018-01-06 17:09:50 +00:00
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// For the license information refer to format.h.
|
2016-04-25 15:07:27 +00:00
|
|
|
|
|
|
|
#ifndef FMT_TIME_H_
|
|
|
|
#define FMT_TIME_H_
|
|
|
|
|
2019-03-15 01:07:42 +00:00
|
|
|
#include "chrono.h"
|
2016-04-25 15:07:27 +00:00
|
|
|
|
2019-03-15 01:07:42 +00:00
|
|
|
#warning fmt/time.h is deprecated, use fmt/chrono.h instead
|
2016-04-25 15:07:27 +00:00
|
|
|
|
|
|
|
#endif // FMT_TIME_H_
|