Removed obsolete typedefs
parent
cde9a41acc
commit
e487979b0f
|
|
@ -59,8 +59,6 @@ class ConstantExpression: public ExpressionNode<T> {
|
|||
|
||||
public:
|
||||
|
||||
typedef T type;
|
||||
|
||||
/// Constructor with a value, yielding a constant
|
||||
ConstantExpression(const T& value) :
|
||||
value_(value) {
|
||||
|
|
@ -85,8 +83,6 @@ class LeafExpression: public ExpressionNode<T> {
|
|||
|
||||
public:
|
||||
|
||||
typedef T type;
|
||||
|
||||
/// Constructor with a single key
|
||||
LeafExpression(Key key) :
|
||||
key_(key) {
|
||||
|
|
@ -130,8 +126,6 @@ private:
|
|||
|
||||
public:
|
||||
|
||||
typedef T type;
|
||||
|
||||
/// Constructor with a single key
|
||||
UnaryExpression(function f, const Expression<E>& expression) :
|
||||
expression_(expression.root()), f_(f) {
|
||||
|
|
@ -180,8 +174,6 @@ private:
|
|||
|
||||
public:
|
||||
|
||||
typedef T type;
|
||||
|
||||
/// Constructor with a single key
|
||||
BinaryExpression(function f, const Expression<E1>& expression1,
|
||||
const Expression<E2>& expression2) :
|
||||
|
|
|
|||
Loading…
Reference in New Issue