removed some trailing spaces

metadata
Wenzel Jakob 2013-01-27 19:51:14 -05:00
parent 87183a7534
commit 4897f1d290
1 changed files with 3 additions and 3 deletions

View File

@ -472,7 +472,7 @@ public:
template <typename T> void readArray(T *array, size_t count);
/**
* \brief Read a known-size array from the stream (uses partial template
* \brief Read a known-size array from the stream (uses partial template
* specialization to select a method appropriate to the data type)
*/
template <typename T, size_t N> inline void readArray(T (&arr)[N]) {
@ -484,9 +484,9 @@ public:
* specialization to select a method appropriate to the data type)
*/
template <typename T> void writeArray(const T *array, size_t count);
/**
* \brief Write a known-size array to the stream (uses partial template
* \brief Write a known-size array to the stream (uses partial template
* specialization to select a method appropriate to the data type)
*/
template <typename T, size_t N> inline void writeArray(const T (&arr)[N]) {