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
dab95b57
You need to sign in or sign up before continuing.
Commit
dab95b57
authored
Aug 27, 2012
by
Davis King
Browse files
Added dlib:: qualifier to something in a #define so the macro works
outside the dlib namespace.
parent
cd649454
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
dlib/general_hash/murmur_hash3.h
dlib/general_hash/murmur_hash3.h
+2
-2
No files found.
dlib/general_hash/murmur_hash3.h
View file @
dab95b57
...
@@ -49,8 +49,8 @@ namespace dlib
...
@@ -49,8 +49,8 @@ namespace dlib
return
(
x
<<
r
)
|
(
x
>>
(
64
-
r
));
return
(
x
<<
r
)
|
(
x
>>
(
64
-
r
));
}
}
#define DLIB_ROTL32(x,y) murmur_rotl32(x,y)
#define DLIB_ROTL32(x,y)
dlib::
murmur_rotl32(x,y)
#define DLIB_ROTL64(x,y) murmur_rotl64(x,y)
#define DLIB_ROTL64(x,y)
dlib::
murmur_rotl64(x,y)
#define DLIB_BIG_CONSTANT(x) (x##LLU)
#define DLIB_BIG_CONSTANT(x) (x##LLU)
...
...
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