Commit 03449af3 authored by Davis King's avatar Davis King

Minor changes to avoid compiler warnings from gcc in some cases

parent 5874a2d4
...@@ -82,7 +82,7 @@ namespace dlib ...@@ -82,7 +82,7 @@ namespace dlib
# else # else
# define DLIB_FUNCTION_NAME "unknown function" # define DLIB_FUNCTION_NAME "unknown function"
# endif # endif
#elif _MSC_VER #elif defined(_MSC_VER)
#define DLIB_FUNCTION_NAME __FUNCSIG__ #define DLIB_FUNCTION_NAME __FUNCSIG__
#else #else
#define DLIB_FUNCTION_NAME "unknown function" #define DLIB_FUNCTION_NAME "unknown function"
......
...@@ -603,7 +603,7 @@ namespace dlib ...@@ -603,7 +603,7 @@ namespace dlib
// following line of code. However, there is also a bug in gcc-3.3 // following line of code. However, there is also a bug in gcc-3.3
// that causes it to error out if <T> is present. So this works around // that causes it to error out if <T> is present. So this works around
// this problem. // this problem.
#if _MSC_VER == 1400 #if defined(_MSC_VER) && _MSC_VER == 1400
hook.set<T>(object, hook_); hook.set<T>(object, hook_);
#else #else
hook.set(object, hook_); hook.set(object, hook_);
......
...@@ -25,10 +25,10 @@ namespace dlib ...@@ -25,10 +25,10 @@ namespace dlib
#ifdef __GNUC__ #ifdef __GNUC__
typedef unsigned long long uint64; typedef unsigned long long uint64;
typedef long long int64; typedef long long int64;
#elif __BORLANDC__ #elif defined(__BORLANDC__)
typedef unsigned __int64 uint64; typedef unsigned __int64 uint64;
typedef __int64 int64; typedef __int64 int64;
#elif _MSC_VER #elif defined(_MSC_VER)
typedef unsigned __int64 uint64; typedef unsigned __int64 uint64;
typedef __int64 int64; typedef __int64 int64;
#else #else
......
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