From b4d8b7c142a0753462165257ef1bc1345bbadd6d Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 30 Apr 2015 15:10:09 +0200 Subject: Minor code cleanup --- brep/module.cxx | 8 +++++--- brep/search.cxx | 6 +++--- brep/view.cxx | 6 +++--- 3 files changed, 11 insertions(+), 9 deletions(-) (limited to 'brep') diff --git a/brep/module.cxx b/brep/module.cxx index 44154d6..fc239ba 100644 --- a/brep/module.cxx +++ b/brep/module.cxx @@ -9,6 +9,8 @@ #include // unique_ptr #include +#include +#include #include // strncmp() #include #include // bind() @@ -39,7 +41,7 @@ namespace brep try { static const char* sev_str[] = {"error", "warning", "info", "trace"}; - std::ostream& o = rs.content (500, "text/plain;charset=utf-8"); + ostream& o = rs.content (500, "text/plain;charset=utf-8"); for (const auto& d: e.data) { @@ -81,7 +83,7 @@ namespace brep log_ = &log; int argc = 0; - std::unique_ptr argv (new const char*[options.size () * 2]); + unique_ptr argv (new const char*[options.size () * 2]); for (const auto& nv: options) { @@ -122,7 +124,7 @@ namespace brep } catch (const cli::exception& e) { - std::ostringstream o; + ostringstream o; e.print (o); throw runtime_error (o.str ()); } diff --git a/brep/search.cxx b/brep/search.cxx index 15811e3..5f9f507 100644 --- a/brep/search.cxx +++ b/brep/search.cxx @@ -19,9 +19,9 @@ namespace brep { MODULE_DIAG; - options_ = std::make_shared (s, - ::cli::unknown_mode::fail, - ::cli::unknown_mode::fail); + options_ = make_shared (s, + ::cli::unknown_mode::fail, + ::cli::unknown_mode::fail); if (options_->results_on_page () > 30) fail << "too many search results on page: " diff --git a/brep/view.cxx b/brep/view.cxx index 7ccc159..a644aec 100644 --- a/brep/view.cxx +++ b/brep/view.cxx @@ -16,9 +16,9 @@ namespace brep void view:: init (::cli::scanner& s) { - options_ = std::make_shared (s, - ::cli::unknown_mode::fail, - ::cli::unknown_mode::fail); + options_ = make_shared (s, + ::cli::unknown_mode::fail, + ::cli::unknown_mode::fail); } void view:: -- cgit v1.1