From 34f28d4ad6dcb3c0cf214716eacfecbbadd4ab90 Mon Sep 17 00:00:00 2001 From: Davis King Date: Wed, 12 Dec 2012 19:58:18 -0500 Subject: [PATCH] Minor cleanup --- examples/bsp_ex.cpp | 1 - examples/compress_stream_ex.cpp | 2 -- examples/train_object_detector.cpp | 1 - 3 files changed, 4 deletions(-) diff --git a/examples/bsp_ex.cpp b/examples/bsp_ex.cpp index 16cceb474..b42a2d3d0 100644 --- a/examples/bsp_ex.cpp +++ b/examples/bsp_ex.cpp @@ -78,7 +78,6 @@ int main(int argc, char** argv) // display all the command line options cout << "Usage: bsp_ex (-l port | )\n"; parser.print_options(); - cout << endl; return 0; } diff --git a/examples/compress_stream_ex.cpp b/examples/compress_stream_ex.cpp index a95e270c7..455624e32 100644 --- a/examples/compress_stream_ex.cpp +++ b/examples/compress_stream_ex.cpp @@ -97,8 +97,6 @@ int main(int argc, char** argv) // This function prints out a nicely formatted list of // all the options the parser has parser.print_options(); - - cout << endl; return 0; } diff --git a/examples/train_object_detector.cpp b/examples/train_object_detector.cpp index 36ab4e366..2fe6d78dc 100644 --- a/examples/train_object_detector.cpp +++ b/examples/train_object_detector.cpp @@ -126,7 +126,6 @@ int main(int argc, char** argv) cout << "Usage: train_object_detector [options] \n"; parser.print_options(); - cout << endl; return EXIT_SUCCESS; }