aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/parser.cpp
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2013-03-18 23:12:41 +0100
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2013-03-18 23:12:41 +0100
commit735b4c4b743a774c5d53ab6a8e10f0f8308a925b (patch)
tree776d0e3ee6720193d54d927e30c6ec1abd60fef6 /src/parser.cpp
parentace94503b4572d854ae326273a3ecdc37d978400 (diff)
downloadsciteco-735b4c4b743a774c5d53ab6a8e10f0f8308a925b.tar.gz
explicitly instantiate MicroStateMachine: fixes compilation with gcc-4.4
Diffstat (limited to 'src/parser.cpp')
-rw-r--r--src/parser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.cpp b/src/parser.cpp
index a5e7151..cb1f577 100644
--- a/src/parser.cpp
+++ b/src/parser.cpp
@@ -244,7 +244,7 @@ State::get_next_state(gchar chr) throw (Error, ReplaceCmdline)
void
StringBuildingMachine::reset(void)
{
- MicroStateMachine::reset();
+ MicroStateMachine<gchar *>::reset();
undo.push_obj(qregspec_machine) = NULL;
undo.push_var(mode) = MODE_NORMAL;
undo.push_var(toctl) = false;