diff options
author | Thiago Macieira <thiago.macieira@nokia.com> | 2010-01-06 10:40:42 (GMT) |
---|---|---|
committer | Thiago Macieira <thiago.macieira@nokia.com> | 2010-01-06 10:46:09 (GMT) |
commit | 7e77574fbedf0227efd33b0fab1028b7129ef908 (patch) | |
tree | e0c875ba01a800f602011ef9c4a5d0c97ba4118e | |
parent | d149a3faca9b97ce806249bc7ef73fe2f59589d5 (diff) | |
download | Qt-7e77574fbedf0227efd33b0fab1028b7129ef908.zip Qt-7e77574fbedf0227efd33b0fab1028b7129ef908.tar.gz Qt-7e77574fbedf0227efd33b0fab1028b7129ef908.tar.bz2 |
GCC doesn't like comment lines ending in \
src/opengl/gl2paintengineex/qtriangulator.cpp:655:5: warning: multi-line comment
So add some padding characters to the right (can't just add spaces
though).
Reviewed-by: TrustMe
-rw-r--r-- | src/opengl/gl2paintengineex/qtriangulator.cpp | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/src/opengl/gl2paintengineex/qtriangulator.cpp b/src/opengl/gl2paintengineex/qtriangulator.cpp index 6a1112b..d8e72f3 100644 --- a/src/opengl/gl2paintengineex/qtriangulator.cpp +++ b/src/opengl/gl2paintengineex/qtriangulator.cpp @@ -650,53 +650,53 @@ inline void QRBTree<T>::clear() template <class T> void QRBTree<T>::rotateLeft(Node *node) { - // | | - // N B - // / \ / \ - // A B ---> N D - // / \ / \ - // C D A C + // | | // + // N B // + // / \ / \ // + // A B ---> N D // + // / \ / \ // + // C D A C // Node *&ref = (node->parent ? (node == node->parent->left ? node->parent->left : node->parent->right) : root); ref = node->right; node->right->parent = node->parent; - // : - // N - // / :| - // A B - // / \ - // C D + // : // + // N // + // / :| // + // A B // + // / \ // + // C D // node->right = ref->left; if (ref->left) ref->left->parent = node; - // : | - // N B - // / \ : \ - // A C D + // : | // + // N B // + // / \ : \ // + // A C D // ref->left = node; node->parent = ref; - // | - // B - // / \ - // N D - // / \ - // A C + // | // + // B // + // / \ // + // N D // + // / \ // + // A C // } template <class T> void QRBTree<T>::rotateRight(Node *node) { - // | | - // N A - // / \ / \ - // A B ---> C N - // / \ / \ - // C D D B + // | | // + // N A // + // / \ / \ // + // A B ---> C N // + // / \ / \ // + // C D D B // Node *&ref = (node->parent ? (node == node->parent->left ? node->parent->left : node->parent->right) : root); ref = node->left; |