2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-30 21:45:37 +00:00

[master] a cleanup fix: missing boost namespace prefix

reviewed on jabber room
This commit is contained in:
chenzhengzhang
2011-08-03 19:18:48 +08:00
parent da32354d05
commit c5124556a1

View File

@@ -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);