mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
bca02c1008
Summary: For better cross-platform consistency, migrate usages of NDEBUG to REACT_NATIVE_DEBUG. See flags.h for explanation. Changelog: [Internal] Reviewed By: PeteTheHeat Differential Revision: D26695097 fbshipit-source-id: 0a861b9f8a435267b16dcb9c37fd501901a544fd
24 lines
554 B
C++
24 lines
554 B
C++
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#include "SliderMeasurementsManager.h"
|
|
|
|
#include <react/debug/react_native_assert.h>
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
Size SliderMeasurementsManager::measure(
|
|
SurfaceId surfaceId,
|
|
LayoutConstraints layoutConstraints) const {
|
|
react_native_assert(false); // should never reach this point
|
|
return {};
|
|
}
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|