<html>
    <head>
      <base href="https://llvm.org/bugs/" />
    </head>
    <body><table border="1" cellspacing="0" cellpadding="8">
        <tr>
          <th>Bug ID</th>
          <td><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW --- - compilation error when copy constructor for llvm::ilist is called"
   href="https://llvm.org/bugs/show_bug.cgi?id=28088">28088</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>compilation error when copy constructor for llvm::ilist is called
          </td>
        </tr>

        <tr>
          <th>Product</th>
          <td>new-bugs
          </td>
        </tr>

        <tr>
          <th>Version</th>
          <td>3.7
          </td>
        </tr>

        <tr>
          <th>Hardware</th>
          <td>PC
          </td>
        </tr>

        <tr>
          <th>OS</th>
          <td>Linux
          </td>
        </tr>

        <tr>
          <th>Status</th>
          <td>NEW
          </td>
        </tr>

        <tr>
          <th>Severity</th>
          <td>normal
          </td>
        </tr>

        <tr>
          <th>Priority</th>
          <td>P
          </td>
        </tr>

        <tr>
          <th>Component</th>
          <td>new bugs
          </td>
        </tr>

        <tr>
          <th>Assignee</th>
          <td>unassignedbugs@nondot.org
          </td>
        </tr>

        <tr>
          <th>Reporter</th>
          <td>other.nikita@mail.ru
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>llvm-bugs@lists.llvm.org
          </td>
        </tr>

        <tr>
          <th>Classification</th>
          <td>Unclassified
          </td>
        </tr></table>
      <p>
        <div>
        <pre>It is not possible to copy object of type llvm::ilist although copy constructor
is available. When I try to use it a compilation error occures.

There are some problem in the `iplist::insert()` method which is invoked by the
 copy constructor:

    ilist(const ilist &right) {
      insert(this->begin(), right.begin(), right.end());
    }

    template<class InIt> void insert(iterator where, InIt first, InIt last) {
      for (; first != last; ++first) insert(where, *first);
    }

This template `insert()` method try to invoke the following method
    iterator iplist::insert(iterator where, NodeTy *New)

But type of the second argument is not a pointer it is a reference (`*first`)
to `NodeTy`.

So, there is no matching function for call.</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are on the CC list for the bug.</li>
      </ul>
    </body>
</html>