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

@@ -13,20 +13,22 @@ DEFINE_string(inputDir, "", "Path to kmls.");
DEFINE_string(outputDir, "", "Path to converted kmls.");
DEFINE_int32(vehicleType, 0, "Numeric value of routing::VehicleType enum. "
"Pedestrian by default.");
DEFINE_int32(vehicleType, 0,
"Numeric value of routing::VehicleType enum. "
"Pedestrian by default.");
DEFINE_bool(showHelp, false, "Show help on all flags.");
int main(int argc, char ** argv)
{
gflags::SetUsageMessage("The tool is used to generate more smooth track based on "
"waypoints from the kml. The kml has to contain points "
"within LineString tag. If the router can't build the route "
"than the specific path will be untouched. Multiple kmls into "
" the directory are supported.\n\n"
"Usage example: "
"./track_generator_tool -inputDir=path/to/input/ -outputDir=/path/to/output/");
gflags::SetUsageMessage(
"The tool is used to generate more smooth track based on "
"waypoints from the kml. The kml has to contain points "
"within LineString tag. If the router can't build the route "
"than the specific path will be untouched. Multiple kmls into "
" the directory are supported.\n\n"
"Usage example: "
"./track_generator_tool -inputDir=path/to/input/ -outputDir=/path/to/output/");
gflags::ParseCommandLineFlags(&argc, &argv, false /* remove_flags */);