fix missing DLLEXPORT
parent
e658aed6bd
commit
7e5c5c21ac
|
@ -123,7 +123,7 @@ boost::function<bool(gtsam::Key)> LabeledSymbol::TypeLabelTest(unsigned char c,
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ************************************************************************* */
|
/* ************************************************************************* */
|
||||||
std::ostream &operator<<(std::ostream &os, const LabeledSymbol &symbol) {
|
GTSAM_EXPORT std::ostream &operator<<(std::ostream &os, const LabeledSymbol &symbol) {
|
||||||
os << StreamedKey(symbol);
|
os << StreamedKey(symbol);
|
||||||
return os;
|
return os;
|
||||||
}
|
}
|
||||||
|
|
|
@ -107,7 +107,7 @@ public:
|
||||||
LabeledSymbol newLabel(unsigned char label) const { return LabeledSymbol(c_, label, j_); }
|
LabeledSymbol newLabel(unsigned char label) const { return LabeledSymbol(c_, label, j_); }
|
||||||
|
|
||||||
/// Output stream operator that can be used with key_formatter (see Key.h).
|
/// Output stream operator that can be used with key_formatter (see Key.h).
|
||||||
friend std::ostream &operator<<(std::ostream &, const LabeledSymbol &);
|
friend GTSAM_EXPORT std::ostream &operator<<(std::ostream &, const LabeledSymbol &);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue