Commit dab95b57 authored by Davis King's avatar Davis King

Added dlib:: qualifier to something in a #define so the macro works

outside the dlib namespace.
parent cd649454
......@@ -49,8 +49,8 @@ namespace dlib
return (x << r) | (x >> (64 - r));
}
#define DLIB_ROTL32(x,y) murmur_rotl32(x,y)
#define DLIB_ROTL64(x,y) murmur_rotl64(x,y)
#define DLIB_ROTL32(x,y) dlib::murmur_rotl32(x,y)
#define DLIB_ROTL64(x,y) dlib::murmur_rotl64(x,y)
#define DLIB_BIG_CONSTANT(x) (x##LLU)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment