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.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.