Clean up C++ headers (#2402)

This commit is contained in:
Gold856
2026-03-19 02:10:04 -04:00
committed by GitHub
parent 12446a6c44
commit d4bfe643d5
45 changed files with 31 additions and 161 deletions

View File

@@ -22,12 +22,11 @@
* SOFTWARE.
*/
#include <iostream>
#include <gtest/gtest.h>
#include <wpi/print.h>
#include "PhotonVersion.h"
TEST(VersionTest, PrintVersion) {
std::cout << photon::PhotonVersion::versionString << std::endl;
wpi::println("{}", photon::PhotonVersion::versionString);
}