* util.h : drop i2p::util::lexical_cast(), not used anymore (#314)

pull/690/head
hagen 8 years ago
parent b8dcdece38
commit 143aaa2d28

@ -5,9 +5,9 @@
#include <string>
#include <iostream>
#include <boost/asio.hpp>
#include <boost/lexical_cast.hpp>
#ifdef ANDROID
#include <boost/lexical_cast.hpp>
namespace std
{
template <typename T>
@ -22,18 +22,6 @@ namespace i2p
{
namespace util
{
/**
wrapper arround boost::lexical_cast that "never" fails
*/
template <typename T>
T lexical_cast(const std::string & str, const T fallback) {
try {
return boost::lexical_cast<T>(str);
} catch ( ... ) {
return fallback;
}
}
namespace net
{
int GetMTU (const boost::asio::ip::address& localAddress);

Loading…
Cancel
Save