mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-13 08:41:16 +00:00
Declare operator<< for boost::any in boost namespace
This commit is contained in:
parent
7c13503e22
commit
7486249c1e
|
@ -12,9 +12,14 @@
|
||||||
|
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
|
||||||
inline std::ostream& operator<<(std::ostream& os, const fair::mq::Property& p)
|
namespace boost
|
||||||
|
{
|
||||||
|
|
||||||
|
inline std::ostream& operator<<(std::ostream& os, const boost::any& p)
|
||||||
{
|
{
|
||||||
return os << fair::mq::PropertyHelper::GetPropertyInfo(p).first;
|
return os << fair::mq::PropertyHelper::GetPropertyInfo(p).first;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
#endif /* FAIR_MQ_PROPERTYOUT_H */
|
#endif /* FAIR_MQ_PROPERTYOUT_H */
|
||||||
|
|
Loading…
Reference in New Issue
Block a user