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
58
59
60
61
|
--- src/common/classes/Nullable.h
+++ src/common/classes/Nullable.h
@@ -113,19 +113,19 @@
template <typename T> class Nullable : public BaseNullable<T>
{
public:
- explicit Nullable<T>(const T& v)
+ explicit Nullable(const T& v)
{
this->value = v;
this->specified = true;
}
- Nullable<T>(const Nullable<T>& o)
+ Nullable(const Nullable<T>& o)
{
this->value = o.value;
this->specified = o.specified;
}
- Nullable<T>()
+ Nullable()
{
NullableClear<T>::clear(this->value);
this->specified = false;
--- src/common/classes/alloc.h
+++ src/common/classes/alloc.h
@@ -259,7 +259,7 @@
class SubsystemContextPoolHolder : public ContextPoolHolder
{
public:
- SubsystemContextPoolHolder <SubsystemThreadData, SubsystemPool>
+ SubsystemContextPoolHolder
(
SubsystemThreadData* subThreadData,
SubsystemPool* newPool
--- src/common/classes/stack.h
+++ src/common/classes/stack.h
@@ -36,7 +36,7 @@
class Stack : public AutoStorage
{
private:
- Stack<Object, Capacity>(Stack<Object, Capacity>&); // not implemented
+ Stack(Stack<Object, Capacity>&); // not implemented
class Entry : public Vector<Object, Capacity>
{
@@ -117,11 +117,11 @@
Entry* stk_cache;
public:
- explicit Stack<Object, Capacity>(MemoryPool& p)
+ explicit Stack(MemoryPool& p)
: AutoStorage(p), stk(0), stk_cache(0)
{ }
- Stack<Object, Capacity>() : AutoStorage(), stk(0), stk_cache(0) { }
+ Stack() : AutoStorage(), stk(0), stk_cache(0) { }
~Stack()
{
|