Skip to content
Snippets Groups Projects
Commit cea888db authored by Danilo Piparo's avatar Danilo Piparo
Browse files

[VecOps][NFC] Hide some implementation details from doxygen.

parent b6b8fe16
No related branches found
No related tags found
No related merge requests found
......@@ -498,6 +498,7 @@ TVEC_LOGICAL_OPERATOR(||)
///@name RVec Standard Mathematical Functions
///@{
/// \cond
template <typename T> struct PromoteTypeImpl;
template <> struct PromoteTypeImpl<float> { using Type = float; };
......@@ -512,6 +513,8 @@ using PromoteType = typename PromoteTypeImpl<T>::Type;
template <typename U, typename V>
using PromoteTypes = decltype(PromoteType<U>() + PromoteType<V>());
/// \endcond
#define TVEC_UNARY_FUNCTION(NAME, FUNC) \
template <typename T> \
RVec<PromoteType<T>> NAME(const RVec<T> &v) \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment