aboutsummaryrefslogtreecommitdiffstats
path: root/host/include
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2017-04-21 13:41:20 -0700
committerMartin Braun <martin.braun@ettus.com>2017-04-21 23:52:53 -0700
commit1b690d7ab41345973592800612720020bb262859 (patch)
treef35f14d96556ee4f141a7cf278db7da692629b2c /host/include
parent33e81c289f7db3371b2713dde01b913131cea4da (diff)
downloaduhd-1b690d7ab41345973592800612720020bb262859.tar.gz
uhd-1b690d7ab41345973592800612720020bb262859.tar.bz2
uhd-1b690d7ab41345973592800612720020bb262859.zip
log: Changed using to typedef to hopefully placate older compilers
Diffstat (limited to 'host/include')
-rw-r--r--host/include/uhd/utils/log.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/host/include/uhd/utils/log.hpp b/host/include/uhd/utils/log.hpp
index 68c279036..a7814342c 100644
--- a/host/include/uhd/utils/log.hpp
+++ b/host/include/uhd/utils/log.hpp
@@ -157,8 +157,7 @@ namespace uhd {
* Every logging_backend has to define a function with this signature.
* Can be added to the logging core.
*/
- using log_fn_t = std::function<void(const uhd::log::logging_info&)>;
-
+ typedef std::function<void(const uhd::log::logging_info&)> log_fn_t ;
/*! Set the global log level
*