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