aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/utils/serial_number.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'host/lib/utils/serial_number.cpp')
-rw-r--r--host/lib/utils/serial_number.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/host/lib/utils/serial_number.cpp b/host/lib/utils/serial_number.cpp
index 7fd0863d6..af66197fd 100644
--- a/host/lib/utils/serial_number.cpp
+++ b/host/lib/utils/serial_number.cpp
@@ -8,8 +8,7 @@
#include <stdexcept>
#include <string>
-namespace uhd
-{
+namespace uhd { namespace utils {
bool serial_numbers_match(const std::string& serial_a, const std::string& serial_b)
{
try {
@@ -20,4 +19,4 @@ namespace uhd
return false;
}
}
-}
+}}