Eliminate warnings caused by changes to aid new libslic3r backend

This commit is contained in:
tamasmeszaros
2021-04-21 16:02:31 +02:00
parent ad19ab219d
commit dca67822d1
5 changed files with 44 additions and 18 deletions
+2 -2
View File
@@ -106,8 +106,8 @@ template<class C> bool all_of(const C &container)
});
}
template<class T>
using remove_cvref_t = std::remove_reference_t<std::remove_cv_t<T>>;
//template<class T>
//using remove_cvref_t = std::remove_reference_t<std::remove_cv_t<T>>;
/// Exactly like Matlab https://www.mathworks.com/help/matlab/ref/linspace.html
template<class T, class I, class = IntegerOnly<I>>