fmtlegacy/include/fmt/time.h

20 lines
428 B
C
Raw Normal View History

2018-01-06 17:09:50 +00:00
// Formatting library for C++ - time formatting
//
// 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
#ifdef _MSC_VER
# pragma message("fmt/time.h is deprecated, use fmt/chrono.h instead")
#else
# warning fmt/time.h is deprecated, use fmt/chrono.h instead
#endif
2016-04-25 15:07:27 +00:00
#endif // FMT_TIME_H_