Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
clang-format changes related to the previous commit
[simgrid.git] / src / kernel / routing / EmptyZone.cpp
index 50b9ac3..95d7b19 100644 (file)
@@ -16,16 +16,19 @@ namespace kernel {
 namespace routing {
 
 AsNone::AsNone(As* father, const char* name) : AsImpl(father, name)
-{}
+{
+}
 
 AsNone::~AsNone() = default;
 
 void AsNone::getLocalRoute(NetCard* /*src*/, NetCard* /*dst*/, sg_platf_route_cbarg_t /*res*/, double* /*lat*/)
-{}
+{
+}
 
 void AsNone::getGraph(xbt_graph_t /*graph*/, xbt_dict_t /*nodes*/, xbt_dict_t /*edges*/)
 {
   XBT_ERROR("No routing no graph");
 }
-
-}}}
+}
+}
+}