Removed extra 'typename'

release/4.3a0
Richard Roberts 2013-07-31 15:25:05 +00:00
parent 7345b40feb
commit 90cf73d4a7
2 changed files with 2 additions and 2 deletions

View File

@ -341,7 +341,7 @@ namespace gtsam {
public:
/** Shorthand for a smart pointer to a factor */
typedef typename boost::shared_ptr<CombinedImuFactor> shared_ptr;
typedef boost::shared_ptr<CombinedImuFactor> shared_ptr;
/** Default constructor - only use for serialization */
CombinedImuFactor() : preintegratedMeasurements_(imuBias::ConstantBias(), Matrix3::Zero(), Matrix3::Zero(), Matrix3::Zero(), Matrix3::Zero(), Matrix3::Zero(), Matrix::Zero(6,6)) {}

View File

@ -304,7 +304,7 @@ namespace gtsam {
public:
/** Shorthand for a smart pointer to a factor */
typedef typename boost::shared_ptr<ImuFactor> shared_ptr;
typedef boost::shared_ptr<ImuFactor> shared_ptr;
/** Default constructor - only use for serialization */
ImuFactor() : preintegratedMeasurements_(imuBias::ConstantBias(), Matrix3::Zero(), Matrix3::Zero(), Matrix3::Zero()) {}