aboutsummaryrefslogtreecommitdiff
path: root/cutl/compiler/sloc-counter.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-09-13 14:00:03 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-09-13 14:00:03 +0200
commit9767fa0eb684560d3ed9a5abc026e658b5ba735a (patch)
treeaa069fc0647c3cee98dfa821cd422797c28a6fc3 /cutl/compiler/sloc-counter.hxx
parent0143e511f7a5f3595907787a832bee4e3cd03daf (diff)
Remove unneeded header, cosmetic changes
Diffstat (limited to 'cutl/compiler/sloc-counter.hxx')
-rw-r--r--cutl/compiler/sloc-counter.hxx13
1 files changed, 6 insertions, 7 deletions
diff --git a/cutl/compiler/sloc-counter.hxx b/cutl/compiler/sloc-counter.hxx
index eb9e259..23a6086 100644
--- a/cutl/compiler/sloc-counter.hxx
+++ b/cutl/compiler/sloc-counter.hxx
@@ -6,7 +6,6 @@
#ifndef CUTL_COMPILER_SLOC_COUNTER_HXX
#define CUTL_COMPILER_SLOC_COUNTER_HXX
-#include <cctype> // std::isspace
#include <cstddef> // std::size_t
#include <cutl/compiler/code-stream.hxx>
@@ -35,26 +34,26 @@ namespace cutl
public:
virtual void
- put (C c);
+ put (C);
virtual void
unbuffer ();
private:
void
- code (C c);
+ code (C);
void
- c_comment (C c);
+ c_comment (C);
void
- cxx_comment (C c);
+ cxx_comment (C);
void
- char_literal (C c);
+ char_literal (C);
void
- string_literal (C c);
+ string_literal (C);
private:
code_stream<C>& out_;