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
f0e1d4e4
Commit
f0e1d4e4
authored
May 17, 2019
by
virgile devaux
Committed by
Davis E. King
May 16, 2019
Browse files
iEnsures DLIB_FALLTHROUGH macro is only set for GCC>=7 (#1770)
parent
f584e787
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
dlib/general_hash/murmur_hash3.h
dlib/general_hash/murmur_hash3.h
+1
-1
No files found.
dlib/general_hash/murmur_hash3.h
View file @
f0e1d4e4
...
...
@@ -24,7 +24,7 @@ namespace dlib
// Microsoft Visual Studio
#if (defined(__GNUC__) || defined(__clang__))
#if
(
(defined(__GNUC__)
&& __GNUC__ >= 7)
|| defined(__clang__))
#define DLIB_FALLTHROUGH [[fallthrough]]
#else
#define DLIB_FALLTHROUGH
...
...
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