Menu

False positive constVariable

2022-01-17
2022-01-19
  • Anton Davidenko

    Anton Davidenko - 2022-01-17

    example:

    class Singleton
    {
    public:
        static Singleton& createInstance()
        {
            static Singleton *instance = new Singleton();
            return *instance;
        }
    };
    
     
  • CHR

    CHR - 2022-01-19

    Thanks for reporting, ticket is here: https://trac.cppcheck.net/ticket/10744

     

Log in to post a comment.