mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 17:15:54 +00:00
a363a7b501
Reviewed By: fromcelticpark Differential Revision: D7803908 fbshipit-source-id: 957e80519c209732b163ece2bccb7c8c36ff8107
26 lines
415 B
C++
26 lines
415 B
C++
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#include "Platform.h"
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
#if __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Wglobal-constructors"
|
|
#endif
|
|
|
|
namespace JSCNativeHooks {
|
|
|
|
Hook loggingHook = nullptr;
|
|
Hook nowHook = nullptr;
|
|
ConfigurationHook installPerfHooks = nullptr;
|
|
|
|
}
|
|
|
|
#if __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
|
|
} }
|