summaryrefslogtreecommitdiffstats
path: root/host/include
diff options
context:
space:
mode:
Diffstat (limited to 'host/include')
-rw-r--r--host/include/uhd/convert.hpp17
1 files changed, 2 insertions, 15 deletions
diff --git a/host/include/uhd/convert.hpp b/host/include/uhd/convert.hpp
index 6cc729819..f906ff0e9 100644
--- a/host/include/uhd/convert.hpp
+++ b/host/include/uhd/convert.hpp
@@ -50,21 +50,8 @@ namespace uhd{ namespace convert{
//! Conversion factory function typedef
typedef boost::function<converter::sptr(void)> function_type;
- /*!
- * Describe the priority of a converter function.
- * A higher priority function takes precedence.
- * The general case function are the lowest.
- * Next comes the liborc implementations.
- * Custom intrinsics implementations are highest.
- */
- enum priority_type{
- PRIORITY_GENERAL = 0,
- PRIORITY_LIBORC = 1,
- PRIORITY_SIMD = 2,
- PRIORITY_TABLE = 3,
- PRIORITY_CUSTOM = 4,
- PRIORITY_EMPTY = -1,
- };
+ //! Priority of conversion routines
+ typedef int priority_type;
//! Identify a conversion routine in the registry
struct id_type : boost::equality_comparable<id_type>{