From adf49bbc32968acd102d6ddd035080fa66c773dc Mon Sep 17 00:00:00 2001 From: Mathieu Lacage Date: Thu, 7 Jun 2007 10:51:25 +0200 Subject: [PATCH] fix gcov link --- src/common/data-rate.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/common/data-rate.cc b/src/common/data-rate.cc index 705da04bd..832fa98cb 100644 --- a/src/common/data-rate.cc +++ b/src/common/data-rate.cc @@ -23,9 +23,8 @@ #include "ns3/nstime.h" #include "ns3/fatal-error.h" -namespace { -bool +static bool DoParse (const std::string s, uint64_t *v) { std::string::size_type n = s.find_first_not_of("0123456789."); @@ -123,7 +122,6 @@ DoParse (const std::string s, uint64_t *v) return true; } -} namespace ns3 {