Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
bb2dfb1e
Commit
bb2dfb1e
authored
Mar 11, 2012
by
Davis King
Browse files
Fixed compiler error in visual studio 2010
parent
6ab58820
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
dlib/test/array.cpp
dlib/test/array.cpp
+3
-3
No files found.
dlib/test/array.cpp
View file @
bb2dfb1e
...
@@ -35,7 +35,7 @@ namespace
...
@@ -35,7 +35,7 @@ namespace
{
{
dlib
::
rand
rnd
;
dlib
::
rand
rnd
;
DLIB_TEST
(
is_array
<
array
>::
value
==
true
);
DLIB_TEST
(
dlib
::
is_array
<
array
>::
value
==
true
);
array
a1
,
a2
;
array
a1
,
a2
;
...
@@ -608,7 +608,7 @@ namespace
...
@@ -608,7 +608,7 @@ namespace
DLIB_TEST
(
a
.
size
()
==
6
);
DLIB_TEST
(
a
.
size
()
==
6
);
DLIB_TEST
(
a
[
5
].
whatever
==
99
);
DLIB_TEST
(
a
[
5
].
whatever
==
99
);
DLIB_TEST
(
is_array
<
array
<
stuff
>
>::
value
==
true
);
DLIB_TEST
(
dlib
::
is_array
<
array
<
stuff
>
>::
value
==
true
);
}
}
...
@@ -631,7 +631,7 @@ namespace
...
@@ -631,7 +631,7 @@ namespace
print_spinner
();
print_spinner
();
array_expand_test
<
array
<
unsigned
long
>
>
();
array_expand_test
<
array
<
unsigned
long
>
>
();
DLIB_TEST
(
is_array
<
int
>::
value
==
false
);
DLIB_TEST
(
dlib
::
is_array
<
int
>::
value
==
false
);
}
}
}
a
;
}
a
;
...
...
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