uhd/host/tests/math_test.cpp
Martin Braun 11c7e561fc math: Remove uhd::math::log2, replace with std::log2
Now that we're C++11, we can assume the existence of said symbol and
need no more portability hacks.
2019-01-18 09:37:12 -08:00

16 lines
336 B
C++

//
// 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);
}