aboutsummaryrefslogtreecommitdiff
path: root/brep/module.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-04-30 15:10:09 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-04-30 15:10:09 +0200
commitb4d8b7c142a0753462165257ef1bc1345bbadd6d (patch)
treeb7c092a4f4c24be6dc45e8d2f582d58dcfee9cad /brep/module.cxx
parent07780b06aa7b0fe049cc412309cf87e7fb10a0ef (diff)
Minor code cleanup
Diffstat (limited to 'brep/module.cxx')
-rw-r--r--brep/module.cxx8
1 files changed, 5 insertions, 3 deletions
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 <memory> // unique_ptr
#include <string>
+#include <ostream>
+#include <sstream>
#include <cstring> // strncmp()
#include <stdexcept>
#include <functional> // 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<const char*[]> argv (new const char*[options.size () * 2]);
+ unique_ptr<const char*[]> 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 ());
}