[test] Fix comparison between pointer and integer in test_ptrQueueBufferAllocator.cpp

XMLWordPrintable

    • Type: Bug
    • Resolution: Fixed
    • Priority: P3
    • 12
    • Affects Version/s: 12
    • Component/s: hotspot
    • None
    • gc
    • 12
    • b21

      Change JDK-8213352 introduced an gtest which does a comparison between an integer and a pointer which is forbidden in C++:

          ASSERT_EQ(NULL, nodes[i]->next());

      I don't know why other compilers havn't complained about it, but XLC did.

      The fix for this is trivial - just cast NULL to the appropriate pointer type:

          ASSERT_EQ((BufferNode*)NULL, nodes[i]->next());

            Assignee:
            Volker Simonis
            Reporter:
            Volker Simonis
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved: