mirror of
https://github.com/mpusz/mp-units.git
synced 2026-02-07 07:44:32 +01:00
20 lines
260 B
C++
20 lines
260 B
C++
|
|
|
|
#pragma once
|
|
|
|
#include <units/physical/si/volume.h>
|
|
|
|
namespace units{
|
|
namespace experimental{
|
|
|
|
namespace volume {
|
|
|
|
template<typename Rep = double>
|
|
using m3 = units::physical::si::volume<units::physical::si::cubic_metre, Rep>;
|
|
|
|
}
|
|
|
|
}} // units::experimental
|
|
|
|
|