mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-16 21:10:10 +00:00
Now that we're C++11, we can assume the existence of said symbol and need no more portability hacks.
16 lines
336 B
C++
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);
|
|
}
|