fix QDebug signature for Node

This commit is contained in:
Stephen Birarda 2015-07-23 14:06:40 -07:00
parent 19d0bf403c
commit e5955e39b7
2 changed files with 2 additions and 2 deletions

View file

@ -90,7 +90,7 @@ QDataStream& operator>>(QDataStream& in, Node& node) {
return in;
}
QDebug operator<<(QDebug debug, const Node &node) {
QDebug operator<<(QDebug debug, const Node& node) {
debug.nospace() << NodeType::getNodeTypeName(node.getType());
if (node.getType() == NodeType::Unassigned) {
debug.nospace() << " (1)";

View file

@ -91,6 +91,6 @@ private:
typedef QSharedPointer<Node> SharedNodePointer;
Q_DECLARE_METATYPE(SharedNodePointer)
QDebug operator<<(QDebug debug, const Node &message);
QDebug operator<<(QDebug debug, const Node& node);
#endif // hifi_Node_h