aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/PostgresKit/Source/PGPostgresConnectionUtils.m
diff options
context:
space:
mode:
authorStuart Connolly <stuart02@gmail.com>2014-01-26 22:57:19 +0000
committerStuart Connolly <stuart02@gmail.com>2014-01-26 22:57:19 +0000
commitfe10b93f88371b5e151c4ddb704b4c65ed697574 (patch)
treeda51f8d478cc8aec7f85711fc06c322dd5313cfe /Frameworks/PostgresKit/Source/PGPostgresConnectionUtils.m
parent67eb339df23971334c0f4a854c5804445c8d5920 (diff)
downloadsequelpro-fe10b93f88371b5e151c4ddb704b4c65ed697574.tar.gz
sequelpro-fe10b93f88371b5e151c4ddb704b4c65ed697574.tar.bz2
sequelpro-fe10b93f88371b5e151c4ddb704b4c65ed697574.zip
Suppress warnings.
Diffstat (limited to 'Frameworks/PostgresKit/Source/PGPostgresConnectionUtils.m')
-rw-r--r--Frameworks/PostgresKit/Source/PGPostgresConnectionUtils.m5
1 files changed, 5 insertions, 0 deletions
diff --git a/Frameworks/PostgresKit/Source/PGPostgresConnectionUtils.m b/Frameworks/PostgresKit/Source/PGPostgresConnectionUtils.m
index 30ad94a7..83428e02 100644
--- a/Frameworks/PostgresKit/Source/PGPostgresConnectionUtils.m
+++ b/Frameworks/PostgresKit/Source/PGPostgresConnectionUtils.m
@@ -104,6 +104,9 @@
#pragma mark -
#pragma mark Private API
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wobjc-protocol-method-implementation"
+
/**
* Executes the supplied query and returns the result.
*
@@ -129,5 +132,7 @@
return data;
}
+
+#pragma clang diagnostic pop
@end