blob: 5f73585208a2ed32182a94853656508376583e75 (
plain)
1
2
3
4
5
6
7
8
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#pragma once
#include <chrono>
#include <ratio>
typedef std::chrono::duration<double, std::ratio<1>> cmDuration;
|