Use length_t instead of int for vec and mat lengths #584
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
|
||||
namespace
|
||||
{
|
||||
template <typename CTy, typename CTr>
|
||||
template<typename CTy, typename CTr>
|
||||
std::basic_ostream<CTy,CTr>& operator<<(std::basic_ostream<CTy,CTr>& os, glm::precision const& a)
|
||||
{
|
||||
typename std::basic_ostream<CTy,CTr>::sentry const cerberus(os);
|
||||
@@ -29,7 +29,7 @@ namespace
|
||||
return os;
|
||||
}
|
||||
|
||||
template <typename U, glm::precision P, typename T, typename CTy, typename CTr>
|
||||
template<typename U, glm::precision P, typename T, typename CTy, typename CTr>
|
||||
std::basic_string<CTy> type_name(std::basic_ostream<CTy,CTr>& os, T const&)
|
||||
{
|
||||
std::basic_ostringstream<CTy,CTr> ostr;
|
||||
@@ -55,7 +55,7 @@ namespace
|
||||
}
|
||||
} // namespace {
|
||||
|
||||
template <typename T, glm::precision P, typename OS>
|
||||
template<typename T, glm::precision P, typename OS>
|
||||
int test_io_quat(OS& os)
|
||||
{
|
||||
os << '\n' << typeid(OS).name() << '\n';
|
||||
@@ -79,7 +79,7 @@ int test_io_quat(OS& os)
|
||||
return 0;
|
||||
}
|
||||
|
||||
template <typename T, glm::precision P, typename OS>
|
||||
template<typename T, glm::precision P, typename OS>
|
||||
int test_io_vec(OS& os)
|
||||
{
|
||||
os << '\n' << typeid(OS).name() << '\n';
|
||||
@@ -102,7 +102,7 @@ int test_io_vec(OS& os)
|
||||
return 0;
|
||||
}
|
||||
|
||||
template <typename T, glm::precision P, typename OS>
|
||||
template<typename T, glm::precision P, typename OS>
|
||||
int test_io_mat(OS& os, glm::io::order_type otype)
|
||||
{
|
||||
os << '\n' << typeid(OS).name() << '\n';
|
||||
|
||||
Reference in New Issue
Block a user