Skip to content

Commit f33cde6

Browse files
authored
Fix has_include filename (#5776)
1 parent 3127b8c commit f33cde6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

FirebaseCore/Sources/Private/FIRComponentContainer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#import <Foundation/Foundation.h>
1717

1818
// The has_include is a workaround so the old IID needed for the FIS tests can find the headers.
19-
#if __has_include("FirebaseCore/Sources/Private/FIRErrors.h")
19+
#if __has_include("FirebaseCore/Sources/Private/FIRComponentType.h")
2020
#import "FirebaseCore/Sources/Private/FIRComponentType.h"
2121
#import "FirebaseCore/Sources/Private/FIRLibrary.h"
2222
#else

FirebaseCore/Sources/Private/FIRLibrary.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#import <Foundation/Foundation.h>
2121

2222
// The has_include is a workaround so the old IID needed for the FIS tests can find the headers.
23-
#if __has_include("FirebaseCore/Sources/Private/FIRErrors.h")
23+
#if __has_include("FirebaseCore/Sources/Private/FIRComponent.h")
2424
#import "FirebaseCore/Sources/Private/FIRComponent.h"
2525
#else
2626
#import <FirebaseCore/FIRComponent.h>

0 commit comments

Comments
 (0)