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
f0d01c44
Commit
f0d01c44
authored
Jan 04, 2014
by
Davis King
Browse files
suppressed more bogus warnings from gcc 4.8
parent
6dcaaab6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
dlib/matrix/matrix_assign_fwd.h
dlib/matrix/matrix_assign_fwd.h
+6
-0
No files found.
dlib/matrix/matrix_assign_fwd.h
View file @
f0d01c44
...
@@ -3,6 +3,12 @@
...
@@ -3,6 +3,12 @@
#ifndef DLIB_MATRIx_ASSIGn_FWD_
#ifndef DLIB_MATRIx_ASSIGn_FWD_
#define DLIB_MATRIx_ASSIGn_FWD_
#define DLIB_MATRIx_ASSIGn_FWD_
// GCC 4.8 gives false alarms about some variables being uninitialized. Disable these
// false warnings.
#if ( defined(__GNUC__) && __GNUC__ == 4 && __GNUC_MINOR__ == 8)
#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
#endif
#include "../enable_if.h"
#include "../enable_if.h"
#include "matrix_data_layout.h"
#include "matrix_data_layout.h"
#include "../algs.h"
#include "../algs.h"
...
...
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