Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions admob/src/include/firebase/admob/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

#if defined(__ANDROID__)
#include <jni.h>
#elif defined(TARGET_OS_IPHONE)
#elif (TARGET_OS_IPHONE==1)
extern "C" {
#include <objc/objc.h>
} // extern "C"
Expand All @@ -42,7 +42,7 @@ namespace admob {
#if defined(__ANDROID__)
/// An Android Activity from Java.
typedef jobject AdParent;
#elif defined(TARGET_OS_IPHONE)
#elif (TARGET_OS_IPHONE==1)
/// A pointer to an iOS UIView.
typedef id AdParent;
#else
Expand Down