diff options
author | Brent Stapleton <brent.stapleton@ettus.com> | 2019-01-10 15:19:48 -0800 |
---|---|---|
committer | Brent Stapleton <brent.stapleton@ettus.com> | 2019-01-16 11:40:23 -0800 |
commit | 601e0ed87bd97a54f5243fffa7ccd60e31e42425 (patch) | |
tree | 596988e677e7929d5c24259d3b0870f93f107ded /host/examples/test_messages.cpp | |
parent | 8bd7498ed9fea9c46fa34705986968416d818029 (diff) | |
download | uhd-601e0ed87bd97a54f5243fffa7ccd60e31e42425.tar.gz uhd-601e0ed87bd97a54f5243fffa7ccd60e31e42425.tar.bz2 uhd-601e0ed87bd97a54f5243fffa7ccd60e31e42425.zip |
examples: utils: skip formatting program options
Turning off clang formatting around the program option declarations.
clang-format makes them looks bad an unreadable because it thinks the
options are function calls or something.
Diffstat (limited to 'host/examples/test_messages.cpp')
-rw-r--r-- | host/examples/test_messages.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/host/examples/test_messages.cpp b/host/examples/test_messages.cpp index 0f7c289d2..2ff10049d 100644 --- a/host/examples/test_messages.cpp +++ b/host/examples/test_messages.cpp @@ -275,12 +275,14 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){ //setup the program options po::options_description desc("Allowed options"); + // clang-format off desc.add_options() ("help", "help message") ("args", po::value<std::string>(&args)->default_value(""), "multi uhd device address args") ("ntests", po::value<size_t>(&ntests)->default_value(50), "number of tests to run") ("test-chain", "Run broken chain tests") ; + // clang-format on po::variables_map vm; po::store(po::parse_command_line(argc, argv, desc), vm); po::notify(vm); |