Add missing returns in non-void functions #2951

Merged
jaimeMF merged 6 commits from fix_non_void_returns into master 2022-07-17 00:10:37 +00:00
6 changed files with 15 additions and 2 deletions

View file

@ -2,8 +2,10 @@
#include "rules_evaluation_private.hpp"
#include <algorithm>
#include <cstdlib>
#include <ctime>
#include <iomanip>
#include <iostream>
#include <sstream>
#include <tuple>
@ -110,6 +112,9 @@ osmoh::RuleState ModifierToRuleState(osmoh::RuleSequence::Modifier const modifie
case Modifier::Comment:
return osmoh::RuleState::Unknown;
}
std::cerr << "Unreachable\n";
std::abort();
return osmoh::RuleState::Unknown;
}
// Transform timspan with extended end of the form of

View file

@ -30,7 +30,7 @@ public:
}
biodranik commented 2022-07-13 04:49:57 +00:00 (Migrated from github.com)
Review
https://en.cppreference.com/w/cpp/language/attributes/noreturn
// OSMElementCacheReaderInterface overrides:
bool Read(generator::cache::Key /* id */, WayElement & /* value */) override {
[[noreturn]] bool Read(generator::cache::Key /* id */, WayElement & /* value */) override {
CHECK(false, ("Should not be called"));
}

View file

@ -22,7 +22,7 @@ public:
}
biodranik commented 2022-07-13 04:50:04 +00:00 (Migrated from github.com)
Review
https://en.cppreference.com/w/cpp/language/attributes/noreturn
// OSMElementCacheReaderInterface overrides:
bool Read(Key /* id */, WayElement & /* value */) override {
[[noreturn]] bool Read(Key /* id */, WayElement & /* value */) override {
CHECK(false, ("Should not be called"));
}

View file

@ -207,6 +207,8 @@ vector<m2::SharedSpline> ClipSplineByRect(m2::RectD const & rect, m2::SharedSpli
case RectCase::Outside: return {};
case RectCase::Intersect: return ClipPathByRectImpl(rect, spline->GetPath());
}
CHECK(false, ("Unreachable"));
return {};
}
std::vector<m2::SharedSpline> ClipPathByRect(m2::RectD const & rect,
@ -218,6 +220,8 @@ std::vector<m2::SharedSpline> ClipPathByRect(m2::RectD const & rect,
case RectCase::Outside: return {};
case RectCase::Intersect: return ClipPathByRectImpl(rect, path);
}
CHECK(false, ("Unreachable"));
return {};
}
void ClipPathByRectBeforeSmooth(m2::RectD const & rect, std::vector<m2::PointD> const & path,

View file

@ -210,6 +210,8 @@ CrossMwmGraph::MwmStatus CrossMwmGraph::GetMwmStatus(NumMwmId numMwmId, string c
case MwmDataSource::SectionExists: return MwmStatus::SectionExists;
case MwmDataSource::NoSection: return MwmStatus::NoSection;
}
CHECK(false, ("Unreachable"));
return MwmStatus::NoSection;
}
CrossMwmGraph::MwmStatus CrossMwmGraph::GetCrossMwmStatus(NumMwmId numMwmId) const

View file

@ -71,5 +71,7 @@ inline std::string DebugPrint(FakeVertex::Type type)
case FakeVertex::Type::PureFake: return "PureFake";
case FakeVertex::Type::PartOfReal: return "PartOfReal";
}
CHECK(false, ("Unreachable"));
return "UnknownFakeVertexType";
}
} // namespace routing