From ff02feb0b7b3570c103ec76900aa34e7c2c2154f Mon Sep 17 00:00:00 2001 From: Craig Dowell Date: Mon, 24 Mar 2008 15:48:09 -0700 Subject: [PATCH] quiet unused variable warning --- src/node/ipv4-address-generator.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node/ipv4-address-generator.cc b/src/node/ipv4-address-generator.cc index f410f52a9..eb24cb372 100644 --- a/src/node/ipv4-address-generator.cc +++ b/src/node/ipv4-address-generator.cc @@ -137,7 +137,7 @@ Ipv4AddressGeneratorImpl::Init ( // We're going to be playing with the actual bits in the network and mask so // pull them out into ints. // - uint32_t maskBits = mask.GetHostOrder (); + uint32_t maskBits __attribute__((unused)) = mask.GetHostOrder (); uint32_t netBits = net.GetHostOrder (); uint32_t addrBits = addr.GetHostOrder (); //