aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2015-01-30 12:20:36 +0100
committerMartin Braun <martin.braun@ettus.com>2015-01-30 12:20:36 +0100
commit97d8fa856fb166079054bf2558131857f0702ecf (patch)
treeab9fb93871847c165f75df70700343b3cd946b73
parentd3bdb8f1602fda76e0a5a2578cb06902abfe7209 (diff)
downloaduhd-97d8fa856fb166079054bf2558131857f0702ecf.tar.gz
uhd-97d8fa856fb166079054bf2558131857f0702ecf.tar.bz2
uhd-97d8fa856fb166079054bf2558131857f0702ecf.zip
uhd: Fixed build failure for metadata.hpp on Windows
-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;
};
/*!