From 4897f1d290c7813d7f18e5b2d76d7b2dbaa1defc Mon Sep 17 00:00:00 2001 From: Wenzel Jakob Date: Sun, 27 Jan 2013 19:51:14 -0500 Subject: [PATCH] removed some trailing spaces --- include/mitsuba/core/stream.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/mitsuba/core/stream.h b/include/mitsuba/core/stream.h index 112efc3b..a1c6826b 100644 --- a/include/mitsuba/core/stream.h +++ b/include/mitsuba/core/stream.h @@ -472,7 +472,7 @@ public: template 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 inline void readArray(T (&arr)[N]) { @@ -484,9 +484,9 @@ public: * specialization to select a method appropriate to the data type) */ template 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 inline void writeArray(const T (&arr)[N]) {