mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-02 11:28:20 +00:00
16 lines
325 B
C
16 lines
325 B
C
// Formatting library for C++ - time formatting
|
|
//
|
|
// Copyright (c) 2012 - present, Victor Zverovich
|
|
// All rights reserved.
|
|
//
|
|
// For the license information refer to format.h.
|
|
|
|
#ifndef FMT_TIME_H_
|
|
#define FMT_TIME_H_
|
|
|
|
#include "chrono.h"
|
|
|
|
#warning fmt/time.h is deprecated, use fmt/chrono.h instead
|
|
|
|
#endif // FMT_TIME_H_
|