Skip to content

Commit cf13a97

Browse files
committed
clang-format-3.8 changed files
1 parent 24d0af6 commit cf13a97

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

include/engine/datafacade_factory.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ template <template <typename A> class FacadeT, typename AlgorithmT> class DataFa
152152
std::unordered_map<std::string, extractor::ClassData> name_to_class;
153153
const extractor::ProfileProperties *properties = nullptr;
154154
};
155-
}
156-
}
155+
} // namespace engine
156+
} // namespace osrm
157157

158158
#endif

include/extractor/extraction_turn.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ struct ExtractionTurn
130130
double weight;
131131
double duration;
132132
};
133-
}
134-
}
133+
} // namespace extractor
134+
} // namespace osrm
135135

136136
#endif

include/extractor/scripting_environment_lua.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ class Sol2ScriptingEnvironment final : public ScriptingEnvironment
110110
tbb::enumerable_thread_specific<std::unique_ptr<LuaScriptingContext>> script_contexts;
111111
const LocationDependentData location_dependent_data;
112112
};
113-
}
114-
}
113+
} // namespace extractor
114+
} // namespace osrm
115115

116116
#endif /* SCRIPTING_ENVIRONMENT_LUA_HPP */

src/extractor/scripting_environment_lua.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -424,8 +424,8 @@ void Sol2ScriptingEnvironment::InitContext(LuaScriptingContext &context)
424424
"get_relations",
425425
[&getTypedRefBySol](ExtractionRelationContainer &cont, const sol::object &obj)
426426
-> const ExtractionRelationContainer::RelationIDList & {
427-
return cont.GetRelations(getTypedRefBySol(obj));
428-
},
427+
return cont.GetRelations(getTypedRefBySol(obj));
428+
},
429429
"relation",
430430
[](ExtractionRelationContainer &cont, const ExtractionRelation::OsmIDTyped &rel_id)
431431
-> const ExtractionRelation & { return cont.GetRelationData(rel_id); });

0 commit comments

Comments
 (0)