Put language in version string (#377)

This commit is contained in:
sciencewhiz
2016-12-02 20:36:22 -08:00
committed by Peter Johnson
parent 7e0706cf83
commit 16181523c9
2 changed files with 2 additions and 0 deletions

View File

@@ -42,6 +42,7 @@ RobotBase::RobotBase() : m_ds(DriverStation::GetInstance()) {
file = std::fopen("/tmp/frc_versions/FRC_Lib_Version.ini", "w");
if (file != nullptr) {
std::fputs("C++ ", file);
std::fputs(WPILibVersion, file);
std::fclose(file);
}