1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Docs: Avoid generating docs for specialisations of SerialisationTraits

This commit is contained in:
reuk 2023-09-26 15:49:22 +01:00
parent 4e11473a46
commit 770d84b15c
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C

View file

@ -136,6 +136,8 @@ template <typename> struct SerialisationTraits
The following are specialisations of SerialisationTraits for commonly-used types.
*/
#ifndef DOXYGEN
template <typename... Ts>
struct SerialisationTraits<std::vector<Ts...>>
{
@ -382,8 +384,6 @@ struct SerialisationTraits<std::array<Element, N>>
}
};
#ifndef DOXYGEN
/*
This namespace holds utilities for detecting and using serialisation functions.