mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-06-15 14:27:33 +08:00
Summary: Apparently it's not used anymore. And that a good this. Reviewed By: JoshuaGross, mdvacca Differential Revision: D15219258 fbshipit-source-id: e3258d851d1eec5955d86f99a0b0d8a1b0304cb4
21 lines
455 B
C++
21 lines
455 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.
|
|
|
|
#pragma once
|
|
|
|
#include <limits>
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
/*
|
|
* Exact type of float numbers which ideally should match a type behing
|
|
* platform- and chip-architecture-specific float type.
|
|
*/
|
|
using Float = float;
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|