Skip to content

Commit

Permalink
Fix ios-sdk for Xcode project that gnereated by buck
Browse files Browse the repository at this point in the history
Summary: As title

Reviewed By: tianqibt

Differential Revision: D18929482

fbshipit-source-id: 193d240ba8bc87f61913666baf1ef39242858c3a
  • Loading branch information
dreamolight authored and facebook-github-bot committed Dec 11, 2019
1 parent c54b37a commit 016c75d
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 36 deletions.
2 changes: 1 addition & 1 deletion FBSDKCoreKit.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Pod::Spec.new do |s|
ss.exclude_files = 'FBSDKCoreKit/FBSDKCoreKit/Basics/*',
'FBSDKCoreKit/FBSDKCoreKit/Basics/**/*.{h,m}',
'FBSDKCoreKit/FBSDKCoreKit/include/**/*'
ss.source_files = 'FBSDKCoreKit/FBSDKCoreKit/**/*.{h,m,mm}'
ss.source_files = 'FBSDKCoreKit/FBSDKCoreKit/**/*.{h,hpp,m,mm}'
ss.public_header_files = 'FBSDKCoreKit/FBSDKCoreKit/Internal/**/*.h',
'FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/**/*.h',
'FBSDKCoreKit/FBSDKCoreKit/*.h',
Expand Down
60 changes: 30 additions & 30 deletions FBSDKCoreKit/FBSDKCoreKit.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
#import "FBSDKAddressInferencer.h"

#import "FBSDKModelManager.h"
#import "FBSDKModelRuntime.h"
#import "FBSDKModelRuntime.hpp"
#import "FBSDKModelUtility.h"
#import "FBSDKStandaloneModel.h"
#import "FBSDKStandaloneModel.hpp"

#include<stdexcept>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

#import "FBSDKFeatureExtractor.h"
#import "FBSDKModelManager.h"
#import "FBSDKModelRuntime.h"
#import "FBSDKModelRuntime.hpp"
#import "FBSDKModelUtility.h"
#import "FBSDKViewHierarchyMacros.h"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

#import <Accelerate/Accelerate.h>

#include "FBSDKStandaloneModel.h"
#include "FBSDKStandaloneModel.hpp"

#define SEQ_LEN 128
#define ALPHABET_SIZE 256
Expand Down
2 changes: 1 addition & 1 deletion FBSDKCoreKit/FBSDKCoreKitTests/FBSDKModelRuntimeTests.mm
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

#import <XCTest/XCTest.h>

#include "FBSDKModelRuntime.h"
#include "FBSDKModelRuntime.hpp"

@interface FBSDKModelRuntimeTests : XCTestCase

Expand Down

0 comments on commit 016c75d

Please sign in to comment.