Skip to content

Commit

Permalink
Merge pull request #17 from pprindeville/Route-develop
Browse files Browse the repository at this point in the history
Avoid sign-conversion warnings from clang.
  • Loading branch information
aleks-f committed Nov 16, 2012
2 parents c03d0ca + 9596fe7 commit 7126cfa
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Net/include/Poco/Net/Route.h
Expand Up @@ -84,11 +84,11 @@ class Net_API Route
public: public:
typedef std::list<Route> RouteList; typedef std::list<Route> RouteList;


static const unsigned int ROUTE_METRIC_UNKNOWN = ~0; static const unsigned int ROUTE_METRIC_UNKNOWN = ~0U;
static const unsigned int ROUTE_MTU_UNKNOWN = 0; static const unsigned int ROUTE_MTU_UNKNOWN = 0U;
static const unsigned int ROUTE_HOPS_UNKNOWN = ~0; static const unsigned int ROUTE_HOPS_UNKNOWN = ~0U;
static const unsigned int ROUTE_USE_UNKNOWN = ~1; static const unsigned int ROUTE_USE_UNKNOWN = ~1U;
static const unsigned int ROUTE_CREATED_UNKNOWN = 0; static const unsigned int ROUTE_CREATED_UNKNOWN = 0U;


enum RouteType enum RouteType
{ {
Expand Down

0 comments on commit 7126cfa

Please sign in to comment.