diff options
Diffstat (limited to 'host/lib/property_tree.cpp')
-rw-r--r-- | host/lib/property_tree.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/property_tree.cpp b/host/lib/property_tree.cpp index d62f61878..b5ad10b21 100644 --- a/host/lib/property_tree.cpp +++ b/host/lib/property_tree.cpp @@ -66,7 +66,7 @@ fs_path uhd::operator/(const fs_path &lhs, const fs_path &rhs){ fs_path uhd::operator/(const fs_path &lhs, size_t rhs) { - fs_path rhs_str = boost::lexical_cast<std::string>(rhs); + fs_path rhs_str = std::to_string(rhs); return lhs / rhs_str; } |