// 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 and wpi::numbers instead to reflect C++20 and std::numbers") #else #warning "Use and wpi::numbers instead to reflect C++20 and std::numbers" #endif // clang-format on namespace wpi::math { using namespace wpi::numbers; } // namespace wpi::math