mirror of
https://github.com/mpusz/mp-units.git
synced 2025-07-30 02:17:16 +02:00
added mil udl
This commit is contained in:
@ -60,6 +60,8 @@ inline namespace literals {
|
||||
// Thousandth
|
||||
constexpr auto operator"" q_thou(unsigned long long l) { return length<thousandth, std::int64_t>(l); }
|
||||
constexpr auto operator"" q_thou(long double l) { return length<thousandth, long double>(l); }
|
||||
constexpr auto operator"" q_mil(unsigned long long l) { return length<thousandth, std::int64_t>(l); }
|
||||
constexpr auto operator"" q_mil(long double l) { return length<thousandth, long double>(l); }
|
||||
|
||||
|
||||
// Inch
|
||||
|
Reference in New Issue
Block a user