diff options
author | stuconnolly <stuart02@gmail.com> | 2012-09-07 12:20:50 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2012-09-07 12:20:50 +0000 |
commit | 27c66da71c4c4ddd9f987f9f01660a14c93b1a53 (patch) | |
tree | 6bd52d071a9468ab1f78486ef2379eacf00b057d /Frameworks/PostgresKit | |
parent | 5a0916d0b6b80e8393c585ecbdf43987a0b2ebfa (diff) | |
download | sequelpro-27c66da71c4c4ddd9f987f9f01660a14c93b1a53.tar.gz sequelpro-27c66da71c4c4ddd9f987f9f01660a14c93b1a53.tar.bz2 sequelpro-27c66da71c4c4ddd9f987f9f01660a14c93b1a53.zip |
Add log macro to precompiled header.
Diffstat (limited to 'Frameworks/PostgresKit')
-rw-r--r-- | Frameworks/PostgresKit/Source/PostgresKit-Prefix.pch | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Frameworks/PostgresKit/Source/PostgresKit-Prefix.pch b/Frameworks/PostgresKit/Source/PostgresKit-Prefix.pch index 822e702a..04232f8a 100644 --- a/Frameworks/PostgresKit/Source/PostgresKit-Prefix.pch +++ b/Frameworks/PostgresKit/Source/PostgresKit-Prefix.pch @@ -23,9 +23,17 @@ #ifdef __OBJC__ #import <Foundation/Foundation.h> - // PostgreSQL interface + // libpq interface #import "libpq-fe.h" + // libpqtypes interface + #import "libpqtypes.h" + // Framework constants #import "FLXConstants.h" + + // Global types + #import "FLXPostgresTypes.h" + + #define _log(x) NSLog(@"PostgresKit: Warning: %@", x); #endif |