Skip to content

Commit 70b6a8c

Browse files
committed
Fix issues
1 parent e86a142 commit 70b6a8c

3 files changed

Lines changed: 9 additions & 6 deletions

File tree

app_check/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ set(common_SRCS
2424
src/include/firebase/app_check/play_integrity_provider.h
2525
src/include/firebase/app_check/device_check_provider.h
2626
src/include/firebase/app_check/app_attest_provider.h
27-
src/include/firebase/recaptcha_enterprise_provider.h
27+
src/include/firebase/app_check/recaptcha_enterprise_provider.h
2828
)
2929

3030
# Run gradle command to make jar

app_check/src/include/firebase/app_check/recaptcha_enterprise_provider.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,10 @@ class RecaptchaEnterpriseProviderFactoryInternal;
2929
class RecaptchaEnterpriseProviderFactory : public AppCheckProviderFactory {
3030
public:
3131
#if !defined(DOXYGEN)
32-
RecaptchaEnterpriseProviderFactory(const RecaptchaEnterpriseProviderFactory&) = delete;
33-
RecaptchaEnterpriseProviderFactory& operator=(const RecaptchaEnterpriseProviderFactory&) =
34-
delete;
32+
RecaptchaEnterpriseProviderFactory(
33+
const RecaptchaEnterpriseProviderFactory&) = delete;
34+
RecaptchaEnterpriseProviderFactory& operator=(
35+
const RecaptchaEnterpriseProviderFactory&) = delete;
3536
#endif // !defined(DOXYGEN)
3637

3738
/// Gets an instance of this class for installation into a

app_check/src/stub/recaptcha_enterprise_provider_stub.cc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,14 @@
1818
namespace firebase {
1919
namespace app_check {
2020

21-
RecaptchaEnterpriseProviderFactory* RecaptchaEnterpriseProviderFactory::GetInstance() {
21+
RecaptchaEnterpriseProviderFactory*
22+
RecaptchaEnterpriseProviderFactory::GetInstance() {
2223
LogError("Recaptcha Enterprise is not supported on this platform.");
2324
return nullptr;
2425
}
2526

26-
RecaptchaEnterpriseProviderFactory::RecaptchaEnterpriseProviderFactory() {}
27+
RecaptchaEnterpriseProviderFactory::RecaptchaEnterpriseProviderFactory()
28+
: internal_(nullptr) {}
2729

2830
RecaptchaEnterpriseProviderFactory::~RecaptchaEnterpriseProviderFactory() {}
2931

0 commit comments

Comments
 (0)