blob: 575cfe071b457582ded66802953580f513120f9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//
// Copyright 2014 Ettus Research LLC
// Copyright 2018 Ettus Research, a National Instruments Company
//
// SPDX-License-Identifier: GPL-3.0-or-later
//
#include <uhd/utils/math.hpp>
#include <stdint.h>
#include <boost/test/unit_test.hpp>
// We need an empty test
BOOST_AUTO_TEST_CASE(test_)
{
BOOST_CHECK_EQUAL(true, true);
}
|