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
e9ad3351
Commit
e9ad3351
authored
Nov 06, 2014
by
Davis King
Browse files
Fixed a compile time error that could happen when calling fft()
for certain input types.
parent
50388bb5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
dlib/matrix/matrix_fft.h
dlib/matrix/matrix_fft.h
+1
-1
No files found.
dlib/matrix/matrix_fft.h
View file @
e9ad3351
...
...
@@ -40,7 +40,7 @@ namespace dlib
typename
EXP
::
matrix_type
&
outdata
)
{
outdata
.
set_size
(
data
.
size
());
outdata
.
set_size
(
data
.
nr
(),
data
.
nc
());
if
(
data
.
size
()
==
0
)
return
;
...
...
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