aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firebase/Core/FIRVersion.m
diff options
context:
space:
mode:
authorGravatar Paul Beusterien <paulbeusterien@google.com>2018-01-10 14:44:32 -0800
committerGravatar GitHub <noreply@github.com>2018-01-10 14:44:32 -0800
commited671eee8cc7e3a7498aac3c23f5e0bcc35334d3 (patch)
treea08887e3a4fcf042741f04ea271235a16dec472a /Firebase/Core/FIRVersion.m
parent90dedd3d024a2859d0cf514efbfc97e471891c18 (diff)
Update Core style (#641)
Diffstat (limited to 'Firebase/Core/FIRVersion.m')
-rw-r--r--Firebase/Core/FIRVersion.m7
1 files changed, 2 insertions, 5 deletions
diff --git a/Firebase/Core/FIRVersion.m b/Firebase/Core/FIRVersion.m
index 8186683..00a6741 100644
--- a/Firebase/Core/FIRVersion.m
+++ b/Firebase/Core/FIRVersion.m
@@ -14,8 +14,6 @@
* limitations under the License.
*/
-
-
#ifndef Firebase_VERSION
#error "Firebase_VERSION is not defined: add -DFirebase_VERSION=... to the build invocation"
#endif
@@ -24,7 +22,6 @@
#error "FIRCore_VERSION is not defined: add -DFIRCore_VERSION=... to the build invocation"
#endif
-
// The following two macros supply the incantation so that the C
// preprocessor does not try to parse the version as a floating
// point number. See
@@ -33,7 +30,7 @@
#define STR_EXPAND(x) #x
const unsigned char *const FirebaseVersionString =
- (const unsigned char *const)STR(Firebase_VERSION);
+ (const unsigned char *const)STR(Firebase_VERSION);
const unsigned char *const FirebaseCoreVersionString =
- (const unsigned char *const)STR(FIRCore_VERSION);
+ (const unsigned char *const)STR(FIRCore_VERSION);