xo-unit: refactor: move .hpp files to mpl/

This commit is contained in:
Roland Conybeare 2024-04-22 15:30:17 -04:00
commit 755224743e
3 changed files with 0 additions and 0 deletions

View file

@ -1,13 +0,0 @@
/* @file ratio_concept.hpp */
#pragma once
#include <concepts>
namespace xo {
namespace unit {
template <typename Ratio>
concept ratio_concept = (std::is_signed_v<decltype(Ratio::num)>
&& std::is_signed_v<decltype(Ratio::den)>);
} /*namespace unit*/
} /*namespace xo*/