]> git.proxmox.com Git - ceph.git/blob - ceph/src/crimson/common/formatter.h
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / crimson / common / formatter.h
1 // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2 // vim: ts=8 sw=2 smarttab
3
4 #include <seastar/core/lowres_clock.hh>
5
6 #include "common/ceph_time.h"
7
8 namespace std {
9
10 ostream& operator<<(ostream& out,
11 const seastar::lowres_system_clock::time_point& t);
12 ostream& operator<<(ostream& out,
13 const ceph::coarse_real_clock::time_point& t);
14
15 }