2
0
mirror of https://github.com/boostorg/url.git synced 2026-02-13 00:42:15 +00:00
Files
url/test/cmake_test/main.cpp
alandefreitas 85aa57658f cmake subdir tests
related to #188
2022-06-14 15:50:43 -03:00

16 lines
295 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/url.hpp>
#include <cassert>
int main()
{
assert(sizeof(boost::urls::url) > 0);
return 0;
}