Format all C++ and Java code via clang-format

Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
This commit is contained in:
Konstantin Pastbin
2025-08-17 14:32:37 +07:00
parent 9f0290c0ec
commit bfffa1fff4
2169 changed files with 56441 additions and 64188 deletions

View File

@@ -45,16 +45,16 @@ enum class RouterResultCode
enum class SessionState
{
NoValidRoute, // No valid route: no route after application launching or the route was removed.
RouteBuilding, // We requested a route and wait when it will be built. User may be following
// the previous route.
RouteNotStarted, // Route is built but the user isn't on it.
OnRoute, // User follows the route.
RouteNeedRebuild, // User left the route.
RouteFinished, // Destination point is reached but the session isn't closed.
RouteNoFollowing, // Route is built but following mode has been disabled.
RouteRebuilding, // We requested a route rebuild and wait when it will be rebuilt.
// User may following the previous route.
NoValidRoute, // No valid route: no route after application launching or the route was removed.
RouteBuilding, // We requested a route and wait when it will be built. User may be following
// the previous route.
RouteNotStarted, // Route is built but the user isn't on it.
OnRoute, // User follows the route.
RouteNeedRebuild, // User left the route.
RouteFinished, // Destination point is reached but the session isn't closed.
RouteNoFollowing, // Route is built but following mode has been disabled.
RouteRebuilding, // We requested a route rebuild and wait when it will be rebuilt.
// User may following the previous route.
};
/*