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
|
|
|
|
} }
|