mbed OS5

Fork of UIPEthernet by Zoltan Hudak

Revision:
8:4acb22344932
Parent:
3:5b17e4656dd0
--- a/utility/IPAddress.cpp	Tue Apr 26 18:37:14 2016 +0000
+++ b/utility/IPAddress.cpp	Fri Jun 30 19:51:28 2017 +0000
@@ -18,8 +18,8 @@
   License along with this library; if not, write to the Free Software
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */
-#include <mbed.h>
-#include <IPAddress.h>
+#include "mbed.h"
+#include "IPAddress.h"
 
 /**
  * @brief
@@ -96,17 +96,3 @@
 {
     return memcmp(addr, _address, sizeof(_address)) == 0;
 }
-
-//size_t IPAddress::printTo(Print& p) const
-//{
-//    size_t n = 0;
-//    for (int i =0; i < 3; i++)
-//    {
-//        n += p.print(_address[i], DEC);
-//        n += p.print('.');
-//    }
-//    n += p.print(_address[3], DEC);
-//    return n;
-//}
-//
-