aboutsummaryrefslogtreecommitdiffstats
path: root/host/utils/uhd_find_devices.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'host/utils/uhd_find_devices.cpp')
-rw-r--r--host/utils/uhd_find_devices.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/host/utils/uhd_find_devices.cpp b/host/utils/uhd_find_devices.cpp
index ab2ba5ab3..504fafcf7 100644
--- a/host/utils/uhd_find_devices.cpp
+++ b/host/utils/uhd_find_devices.cpp
@@ -29,10 +29,12 @@ namespace po = boost::program_options;
int UHD_SAFE_MAIN(int argc, char *argv[]){
po::options_description desc("Allowed options");
+ // clang-format off
desc.add_options()
("help", "help message")
("args", po::value<std::string>()->default_value(""), "device address args")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);