Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8214125

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

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 12
    • 12
    • 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());

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

              Created:
              Updated:
              Resolved: