Uploaded image for project: 'Qt Creator'
  1. Qt Creator
  2. QTCREATORBUG-14354

Move Definition to Class leaves template<> behind

XMLWordPrintable

      Before:

      template<typename T>
      class Foo
      {
          void func();
      };
      
      template<typename T>
      void Foo::func() // Move Definition to Class
      {
      }

      After:

      template<typename T>
      class Foo
      {
          void func()
          {
          }
      };
      
      template<typename T>
      

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

            orgads Orgad Shaneh
            orgads Orgad Shaneh
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved:

                There are no open Gerrit changes