Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | convert: Add sc12-sc16 converters | Tom Tsou | 2017-07-18 | 1 | -0/+24 |
| | | | | | | | | | | | | | | | | | Create missing sc12-sc16 and sc16-sc12 type converters. To avoid replicating the full sc12 converter class object, overload the converter calls with C++11 std::enable_if metafunctions. When used with std::is_floating and std::is_integral templates, this allow a single template interface with compile time function selection and static type checking. Note the below std::enable_if interface is confusing, but quite effective in this case. typename enable_if<is_floating_point<type>::value>::type* = NULL Fixes: #966 Related: #967, #1721 | ||||
* | uhd: Replaced many lexical_cast with appropriate C++11 equivalents | Martin Braun | 2017-06-29 | 1 | -0/+1 |
| | |||||
* | uhd: replace BOOST_FOREACH with C++11 range-based for loop | Andrej Rode | 2017-02-10 | 1 | -3/+3 |
| | | | | | Note: This is the first commit that uses for-range, and range-based for-loops are now usable for UHD development. | ||||
* | utils: tests: cast RAND_MAX to double before division | Andrej Rode | 2017-01-12 | 1 | -2/+2 |
| | |||||
* | fixup! Remove all boost:: namespace prefix for uint32_t, int32_t etc. ↵ | Martin Braun | 2016-11-15 | 1 | -17/+17 |
| | | | | | | (fixed-width types) Now also removes the namespaces in the utils/ directory. | ||||
* | Updated code to work for new minimum dependencies | Nicholas Corgan | 2016-03-21 | 1 | -1/+2 |
| | | | | | * Removed code referencing now-unsupported versions of Boost * Added <stdint.h> includes where needed | ||||
* | utils: Fixed converter benchmark build fail on older compilers | Martin Braun | 2015-10-20 | 1 | -0/+1 |
| | |||||
* | tools: Added converter benchmark tool | Martin Braun | 2015-10-19 | 1 | -0/+432 |