diff options
author | Stuart Connolly <stuart02@gmail.com> | 2014-01-26 13:41:42 +0000 |
---|---|---|
committer | Stuart Connolly <stuart02@gmail.com> | 2014-01-26 13:41:42 +0000 |
commit | 449700e91b25ca4324d221f92c39dc064721f4ea (patch) | |
tree | 0e27eea3a6ef24d0de2ba597c0022f38cfc08127 /Frameworks/SPMySQLFramework/Source | |
parent | 86c5fd292fe4020662dc734faf0e0faa8fb3cce4 (diff) | |
download | sequelpro-449700e91b25ca4324d221f92c39dc064721f4ea.tar.gz sequelpro-449700e91b25ca4324d221f92c39dc064721f4ea.tar.bz2 sequelpro-449700e91b25ca4324d221f92c39dc064721f4ea.zip |
Specify clang, not GCC.
Diffstat (limited to 'Frameworks/SPMySQLFramework/Source')
-rw-r--r-- | Frameworks/SPMySQLFramework/Source/SPMySQLUtilities.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Frameworks/SPMySQLFramework/Source/SPMySQLUtilities.h b/Frameworks/SPMySQLFramework/Source/SPMySQLUtilities.h index b02f60dc..50f9d504 100644 --- a/Frameworks/SPMySQLFramework/Source/SPMySQLUtilities.h +++ b/Frameworks/SPMySQLFramework/Source/SPMySQLUtilities.h @@ -30,7 +30,8 @@ #include <mach/mach_time.h> -#pragma GCC diagnostic ignored "-Wunused-function" +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wunused-function" /** * Define a project function to make it easier to use mach_absolute_time() @@ -43,3 +44,5 @@ static double _elapsedSecondsSinceAbsoluteTime(uint64_t comparisonTime) return (((double)UnsignedWideToUInt64(elapsedTime)) * 1e-9); } + +#pragma clang diagnostic pop |