rikardfalkeborn 5e120b567c isVariableDeclaration: Handle pointer to const pointer (#1395)
isVariableDeclaration did not handle pointer to const pointer, or
pointer to volatile pointer. This resulted in FPs in examples like the
following:

    class Fred {
        public:
        const char *const *data;
        const char *const *getData() { return data; };
    }

where cppcheck would say getData could be static, since it didn't
recognize const char *const *data as a variable declaration.
2018-09-25 06:19:26 +02:00
..
2018-06-16 16:31:07 +02:00
2018-06-16 16:31:07 +02:00
2018-09-01 08:41:41 +02:00
2018-09-08 09:07:59 +02:00
2018-08-05 10:48:28 +02:00
2018-07-14 10:02:32 +02:00
2018-05-15 16:37:40 +02:00
2018-08-12 08:01:15 +02:00
2018-07-13 16:57:17 +02:00
2018-07-15 23:05:48 +02:00
2018-06-17 17:04:34 +02:00
2018-06-17 17:04:34 +02:00
2018-01-14 15:37:52 +01:00
2018-06-17 19:20:07 +02:00
2018-06-17 19:20:07 +02:00
2018-03-31 20:59:09 +02:00
2018-03-31 20:59:09 +02:00
2018-06-17 09:06:16 +02:00
2018-01-14 15:37:52 +01:00
2018-09-18 12:58:14 +02:00
2018-06-20 10:39:21 +02:00
2018-06-17 17:20:16 +02:00
2018-06-17 17:20:16 +02:00
2018-06-16 16:28:03 +02:00
2018-06-25 21:03:43 +02:00