2
0
mirror of https://github.com/boostorg/url.git synced 2026-01-19 16:52:14 +00:00
Files
url/test/cmake_test/main.cpp
2024-10-04 11:32:08 -03:00

17 lines
351 B
C++

//
// Copyright (c) 2022 alandefreitas (alandefreitas@gmail.com)
//
// Distributed under the Boost Software License, Version 1.0.
// https://www.boost.org/LICENSE_1_0.txt
//
#include <boost/url.hpp>
int main() {
boost::urls::ipv4_address ip_addr({127, 0, 0, 1});
if (ip_addr.to_bytes().size() != 4) {
return 1;
}
return 0;
}