Repo created
This commit is contained in:
parent
4af19165ec
commit
68073add76
12458 changed files with 12350765 additions and 2 deletions
19
libs/routing/cross_mwm_connector.cpp
Normal file
19
libs/routing/cross_mwm_connector.cpp
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
#include "routing/cross_mwm_connector.hpp"
|
||||
|
||||
namespace routing
|
||||
{
|
||||
namespace connector
|
||||
{
|
||||
std::string DebugPrint(WeightsLoadState state)
|
||||
{
|
||||
switch (state)
|
||||
{
|
||||
case WeightsLoadState::Unknown: return "Unknown";
|
||||
case WeightsLoadState::ReadyToLoad: return "ReadyToLoad";
|
||||
case WeightsLoadState::NotExists: return "NotExists";
|
||||
case WeightsLoadState::Loaded: return "Loaded";
|
||||
}
|
||||
UNREACHABLE();
|
||||
}
|
||||
} // namespace connector
|
||||
} // namespace routing
|
||||
Loading…
Add table
Add a link
Reference in a new issue