Removed dependency (boost::algorithm::starts_with) 279/head
authorsvost <svost@users.noreply.github.com>
Thu, 18 Feb 2016 19:45:37 +0000 (22:45 +0300)
committersvost <svost@users.noreply.github.com>
Thu, 18 Feb 2016 19:45:37 +0000 (22:45 +0300)
src/irc.cpp

index 57e7d88..03bc607 100644 (file)
@@ -7,10 +7,7 @@
 #include "base58.h"
 #include "net.h"
 
-#include <boost/algorithm/string/predicate.hpp> // for startswith() and endswith()
-
 using namespace std;
-using namespace boost;
 
 int nGotIRCAddresses = 0;
 
@@ -347,7 +344,7 @@ void ThreadIRCSeed2(void* parg)
                 printf("IRC got join\n");
             }
 
-            if (boost::algorithm::starts_with(strName, "u"))
+            if (strName.compare(0,1, "u") == 0)
             {
                 CAddress addr;
                 if (DecodeAddress(strName, addr))