Browse Source

GL: fix signature of debug operators exposed only to Doxygen.

findsdl-include-root
Vladimír Vondruš 7 years ago
parent
commit
17e960deb0
  1. 4
      src/Magnum/GL/Attribute.h

4
src/Magnum/GL/Attribute.h

@ -319,10 +319,10 @@ template<UnsignedInt location, class T> class Attribute {
#ifdef DOXYGEN_GENERATING_OUTPUT
/** @debugoperatorclassenum{Attribute,Attribute::Components} */
template<class T> Debug& operator<<(Debug& debug, Attribute<T>::Components);
template<UnsignedInt location, class T> Debug& operator<<(Debug& debug, Attribute<location, T>::Components);
/** @debugoperatorclassenum{Attribute,Attribute::DataType} */
template<class T> Debug& operator<<(Debug& debug, Attribute<T>::DataType);
template<UnsignedInt location, class T> Debug& operator<<(Debug& debug, Attribute<location, T>::DataType);
#endif
/**

Loading…
Cancel
Save