summaryrefslogtreecommitdiff
path: root/cli/html.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'cli/html.cxx')
-rw-r--r--cli/html.cxx7
1 files changed, 1 insertions, 6 deletions
diff --git a/cli/html.cxx b/cli/html.cxx
index e91fdd7..41d4c59 100644
--- a/cli/html.cxx
+++ b/cli/html.cxx
@@ -46,15 +46,12 @@ namespace
static void
wrap_lines (ostream& os, const string& d, size_t indent)
{
- assert (!d.empty ());
-
size_t lim (78 - indent);
string ind (indent, ' ');
- size_t b (0), e (0), i (0);
-
bool nl (true); // True if last written to os character is a newline.
+ size_t b (0), e (0), i (0);
for (size_t n (d.size ()); i < n; ++i)
{
// First handle <pre>.
@@ -218,8 +215,6 @@ namespace
os << endl
<< endl;
}
-
- private:
};
//