aboutsummaryrefslogtreecommitdiffstats
path: root/host/include
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2015-01-30 14:10:15 +0100
committerMartin Braun <martin.braun@ettus.com>2015-01-30 14:10:15 +0100
commite28d7844b0c9d206bf5b7737a44c22f29e761ec1 (patch)
treeb66d0fee4d20c6d8ddebd7a3267fd64ff0a01a41 /host/include
parent5bbcbaa397d596025c2a1d9db40c683b191a751b (diff)
parentb821635dcbe16c37d9d21a51f8b2330d6e483fdf (diff)
downloaduhd-e28d7844b0c9d206bf5b7737a44c22f29e761ec1.tar.gz
uhd-e28d7844b0c9d206bf5b7737a44c22f29e761ec1.tar.bz2
uhd-e28d7844b0c9d206bf5b7737a44c22f29e761ec1.zip
Merge branch 'maint'
Diffstat (limited to 'host/include')
-rw-r--r--host/include/uhd/types/metadata.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/host/include/uhd/types/metadata.hpp b/host/include/uhd/types/metadata.hpp
index 51a2b7c43..c4fe00271 100644
--- a/host/include/uhd/types/metadata.hpp
+++ b/host/include/uhd/types/metadata.hpp
@@ -21,6 +21,7 @@
#include <uhd/config.hpp>
#include <uhd/types/time_spec.hpp>
#include <boost/cstdint.hpp>
+#include <string>
namespace uhd{
@@ -120,8 +121,8 @@ namespace uhd{
/*!
* Convert a rx_metadata_t into a pretty print string.
- *
- * \param compact Set to false for a more verbose output.
+ *
+ * \param compact Set to false for a more verbose output.
* \return a printable string representing the metadata.
*/
std::string to_pp_string(bool compact=true) const;
@@ -130,7 +131,7 @@ namespace uhd{
* Similar to C's strerror() function, creates a std::string describing the error code.
* \return a printable string representing the error.
*/
- std::string strerror(void) const;
+ std::string strerror(void) const;
};
/*!