conan test_package fixed

This commit is contained in:
Mateusz Pusz
2019-12-11 08:34:16 +01:00
parent 9bebf316a7
commit 62164e426a

View File

@@ -20,18 +20,16 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE. // SOFTWARE.
#include <units/dimensions/velocity.h> #include <units/physical/si/velocity.h>
#include <iostream> #include <iostream>
using namespace units::literals; constexpr units::Velocity AUTO avg_speed(units::Length AUTO d, units::Time AUTO t)
template<units::Length D, units::Time T>
constexpr units::Velocity avg_speed(D d, T t)
{ {
return d / t; return d / t;
} }
int main() int main()
{ {
using namespace units::si::literals;
std::cout << "Average speed = " << avg_speed(240.km, 2h) << '\n'; std::cout << "Average speed = " << avg_speed(240.km, 2h) << '\n';
} }