Skip to content

Commit d97de77

Browse files
committed
Added const.
1 parent 97b64aa commit d97de77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Array.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class Array
5959
};
6060

6161
template <typename T, size_t MAX_SIZE>
62-
inline Print & operator <<(Print & stream, Array<T,MAX_SIZE> & array)
62+
inline Print & operator <<(Print & stream, const Array<T,MAX_SIZE> & array)
6363
{
6464
stream.print("[");
6565
for (size_t i=0; i<array.size(); ++i)

0 commit comments

Comments
 (0)