Skip to content

Commit ad561df

Browse files
committed
remove spurious semicolon
1 parent d690e2e commit ad561df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/scl/math/array.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ class Array final {
135135
* This function will attempt to construct a \p T element using \p value, and
136136
* then fill all slots with this value.
137137
*/
138-
explicit Array(int value) : Array(T{value}) {};
138+
explicit Array(int value) : Array(T{value}) {}
139139

140140
/**
141141
* @brief Copy construct an Array from another array.

0 commit comments

Comments
 (0)