Details

    Description

      Autocompletion for Curiously Recurring Template Pattern would be nice, e.g.

      class Test1
      {
      public:
          static Test1 &getInstance();
          void method();
      };
      
      template<class T>
      class Singleton
      {
      public:
          static T &getInstance();
      };
      
      class Test2 : public Singleton<Test2>
      {
      public:
          void method();
      };
      
      void foo()
      {
          // autocompletion works here:
          Test1::getInstance().method();
          // but does not work here
          Test2::getInstance().   // << no autocompletion
      }
      

      Attachments

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

        Activity

          People

            kosjar Nikolai Kosjar
            kb Kai Bernhard
            Votes:
            3 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Gerrit Reviews

                There are no open Gerrit changes