#include namespace units { voltage operator""_V(long double volts) { return voltage(static_cast(volts)); } resistance operator""_Ohm(long double ohms) { return resistance(static_cast(ohms)); } };