Removed obsolete typedefs

release/4.3a0
dellaert 2014-09-27 15:49:25 +02:00
parent cde9a41acc
commit e487979b0f
1 changed files with 0 additions and 8 deletions

View File

@ -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) :