mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-25 01:41:43 +00:00
21 lines
599 B
Plaintext
21 lines
599 B
Plaintext
// Copyright (c) FIRST and other WPILib contributors.
|
|
// Open Source Software; you can modify and/or share it under the terms of
|
|
// the WPILib BSD license file in the root directory of this project.
|
|
|
|
#pragma once
|
|
|
|
#include "wpi/numbers"
|
|
|
|
// clang-format off
|
|
#ifdef _MSC_VER
|
|
#pragma message("warning: Use <wpi/numbers> and wpi::numbers instead to reflect C++20 <numbers> and std::numbers")
|
|
#else
|
|
#warning "Use <wpi/numbers> and wpi::numbers instead to reflect C++20 <numbers> and std::numbers"
|
|
#endif
|
|
|
|
// clang-format on
|
|
|
|
namespace wpi::math {
|
|
using namespace wpi::numbers;
|
|
} // namespace wpi::math
|