aboutsummaryrefslogtreecommitdiffstats
path: root/host/include/uhd/utils/scope_exit.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'host/include/uhd/utils/scope_exit.hpp')
-rw-r--r--host/include/uhd/utils/scope_exit.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/host/include/uhd/utils/scope_exit.hpp b/host/include/uhd/utils/scope_exit.hpp
index 953e5e47d..0e4a01382 100644
--- a/host/include/uhd/utils/scope_exit.hpp
+++ b/host/include/uhd/utils/scope_exit.hpp
@@ -23,7 +23,7 @@ namespace uhd { namespace utils {
class scope_exit
{
public:
- using uptr = std::unique_ptr<scope_exit>;
+ using uptr = std::unique_ptr<scope_exit>;
using exit_cb_t = std::function<void(void)>;
// \param exit_b The function object ("exit callback") that gets executed
@@ -49,7 +49,6 @@ private:
std::function<void(void)> _exit_cb;
};
-}} /* namespace uhd::rfnoc */
+}} // namespace uhd::utils
#endif /* INCLUDED_UHD_SCOPE_EXIT_HPP */
-