Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
f0e1d4e4
Commit
f0e1d4e4
authored
May 17, 2019
by
virgile devaux
Committed by
Davis E. King
May 17, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iEnsures DLIB_FALLTHROUGH macro is only set for GCC>=7 (#1770)
parent
f584e787
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
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