changed the concept check macro to use a typedef instead of a instantiation

release/4.3a0
Alex Cunningham 2011-10-15 18:38:45 +00:00
parent 0cb5c258df
commit 49f4c911f6
1 changed files with 1 additions and 1 deletions

View File

@ -57,6 +57,6 @@ struct RangeMeasurementConcept {
};
/** Instantiation macro */
#define GTSAM_CONCEPT_RANGE_MEASUREMENT(V1,V2) template class RangeMeasurementConcept<V1,V2>;
#define GTSAM_CONCEPT_RANGE_MEASUREMENT(V1,V2) typedef RangeMeasurementConcept<V1,V2> RangeMeasurementConcept##V1##V2;
} // \namespace gtsam