Supress a warning in exoplanets task

This commit is contained in:
Emma Broman
2021-02-09 13:56:42 +01:00
parent 4a80b83df8
commit f9e712a8e7

View File

@@ -407,7 +407,7 @@ float ExoplanetsDataPreparationTask::bvFromTeff(float teff) {
float bv = 0.f;
float bvUpper = 0.f;
float bvLower = 0.f;
float teffLower;
float teffLower = 0.f;
float teffUpper;
std::string row;
while (std::getline(teffToBvFile, row)) {