Skip to content

Commit cd8a371

Browse files
committed
remove default args from Array constr
1 parent 73266a7 commit cd8a371

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libopenage/curve/container/array.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ class Array : event::EventEntity {
4343
* @param notifier Function to call when this curve changes.
4444
* @param default_vals Default values for the array elements.
4545
*/
46-
Array(const std::shared_ptr<event::EventLoop> &loop = nullptr,
47-
size_t id = 0,
46+
Array(const std::shared_ptr<event::EventLoop> &loop,
47+
size_t id,
4848
const std::string &idstr = "",
4949
const EventEntity::single_change_notifier &notifier = nullptr,
5050
const std::array<T, Size> &default_vals = {}) :

0 commit comments

Comments
 (0)