Browse Source

[master] a cleanup fix: missing boost namespace prefix
reviewed on jabber room

chenzhengzhang 13 years ago
parent
commit
c5124556a1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/dns/rdata/in_1/srv_33.cc

+ 1 - 1
src/lib/dns/rdata/in_1/srv_33.cc

@@ -64,7 +64,7 @@ NumType
 tokenToNum(const string& num_token) {
     NumType num;
     try {
-        num = lexical_cast<NumType>(num_token);
+        num = boost::lexical_cast<NumType>(num_token);
     } catch (const boost::bad_lexical_cast& ex) {
         isc_throw(InvalidRdataText, "Invalid SRV numeric parameter: " <<
                   num_token);