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
159c2bbe
Commit
159c2bbe
authored
Feb 28, 2012
by
Davis King
Browse files
Fixed missing std:: compiler error.
parent
32652774
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
dlib/geometry/vector.h
dlib/geometry/vector.h
+2
-2
No files found.
dlib/geometry/vector.h
View file @
159c2bbe
...
...
@@ -1362,8 +1362,8 @@ namespace dlib
double
angle
)
{
const
double
ca
=
cos
(
angle
);
const
double
sa
=
sin
(
angle
);
const
double
ca
=
std
::
cos
(
angle
);
const
double
sa
=
std
::
sin
(
angle
);
matrix
<
double
,
2
,
2
>
m
;
m
=
ca
,
-
sa
,
...
...
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