mirror of
https://github.com/overte-org/overte.git
synced 2025-04-23 03:53:34 +02:00
fix QDebug signature for Node
This commit is contained in:
parent
19d0bf403c
commit
e5955e39b7
2 changed files with 2 additions and 2 deletions
|
@ -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)";
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue