X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9c92907fc7a130fd6abc60b98791daa320742ba2..1a7954733368fabf12e8e4012c89db88843d9176:/src/surf/surf_routing.hpp diff --git a/src/surf/surf_routing.hpp b/src/surf/surf_routing.hpp index 56b51464c0..bbe4e165b1 100644 --- a/src/surf/surf_routing.hpp +++ b/src/surf/surf_routing.hpp @@ -45,7 +45,7 @@ class RoutingPlatf; class NetCard { public: virtual ~NetCard(){}; - virtual int id()=0; // Our rank in the vertices_ array of our containing AS. + virtual unsigned int id()=0; // Our rank in the vertices_ array of our containing AS. virtual char *name()=0; virtual AsImpl *containingAS()=0; // This is the AS in which I am virtual bool isAS()=0; @@ -69,7 +69,7 @@ public: } ~NetCardImpl() { xbt_free(name_);}; - int id() override {return id_;} + unsigned int id() override {return id_;} char *name() override {return name_;} AsImpl *containingAS() override {return containingAS_;} @@ -78,7 +78,7 @@ public: bool isRouter() override {return componentType_ == Type::Router;} private: - int id_ = -1; + unsigned int id_; char *name_; NetCard::Type componentType_; AsImpl *containingAS_; @@ -93,7 +93,7 @@ public: : src_(src), dst_(dst), link_(link) {}; NetCard *src_; NetCard *dst_; - void *link_; + void *link_; // FIXME: void* should die just like the death* }; /** @ingroup SURF_routing_interface