blob: bae680af38bd01043a9fbf35933c697582d133de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
Index: b/src/frontend/common/TemplateBuilder.hh
===================================================================
--- a/src/frontend/common/TemplateBuilder.hh
+++ b/src/frontend/common/TemplateBuilder.hh
@@ -47,12 +47,12 @@
SmartPtr<typename ElementBuilder::type>
getElement(const typename Model::Element& el) const
{
- if (SmartPtr<typename ElementBuilder::type> elem = smart_cast<typename ElementBuilder::type>(linkerAssoc(el)))
+ if (SmartPtr<typename ElementBuilder::type> elem = smart_cast<typename ElementBuilder::type>(this->linkerAssoc(el)))
return elem;
else
{
- SmartPtr<typename ElementBuilder::type> elem = ElementBuilder::type::create(ElementBuilder::getContext(*this));
- linkerAdd(el, elem);
+ elem = ElementBuilder::type::create(ElementBuilder::getContext(*this));
+ this->linkerAdd(el, elem);
return elem;
}
}
Index: b/src/frontend/common/TemplateElementIterator.hh
===================================================================
--- a/src/frontend/common/TemplateElementIterator.hh
+++ b/src/frontend/common/TemplateElementIterator.hh
@@ -43,7 +43,7 @@
findValidNodeForward(const typename Model::Node& p0) const
{
for (typename Model::Node p = p0; p; p = Model::getNextSibling(p))
- if (valid(p)) return Model::asElement(p);
+ if (this->valid(p)) return Model::asElement(p);
return typename Model::Element();
}
Index: b/mathmlsvg/main.cc
===================================================================
--- a/mathmlsvg/main.cc
+++ b/mathmlsvg/main.cc
@@ -18,6 +18,7 @@
#include <config.h>
+#include <unistd.h>
#include <cassert>
#include <cstring>
#include <fstream>
Index: b/mathmlps/main.cc
===================================================================
--- a/mathmlps/main.cc
+++ b/mathmlps/main.cc
@@ -18,6 +18,7 @@
#include <config.h>
+#include <unistd.h>
#include <cassert>
#include <cstring>
#include <fstream>
|