Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
htop
Commits
094ddc40
Commit
094ddc40
authored
Apr 08, 2015
by
Hisham Muhammad
Browse files
This assert is no longer valid.
parent
d4256d63
Changes
1
Hide whitespace changes
Inline
Side-by-side
Vector.c
View file @
094ddc40
...
...
@@ -189,7 +189,6 @@ static void Vector_checkArraySize(Vector* this) {
void
Vector_insert
(
Vector
*
this
,
int
idx
,
void
*
data_
)
{
Object
*
data
=
data_
;
assert
(
idx
>=
0
);
assert
(
idx
<=
this
->
items
);
assert
(
Object_isA
(
data
,
this
->
type
));
assert
(
Vector_isConsistent
(
this
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment