Mathieu Laurendeau

Results 39 issues of Mathieu Laurendeau

_From [[email protected]](https://code.google.com/u/118159027649630789302/) on December 15, 2012 14:39:50_ Issue reported on the forum: http://forum.gimx.fr/viewtopic.php?f=5&t=748 _Original issue: http://code.google.com/p/diyps3controller/issues/detail?id=200_

bug
imported

_From [[email protected]](https://code.google.com/u/118159027649630789302/) on January 12, 2011 10:10:00_ Although it's easy to write macros with a text-editor, a configuration GUI could be done to avoid the user from making typos. Ideas:...

enhancement
imported

Hello, Thanks a lot for your work on Drmemory! I'm using msys2+mingw64, and Drmemory reports an error on every variable-length automatic array. Example: ``` size_t count = 0; /* ......

Bug-FalsePositive
Hotlist-Release
OpSys-MinGW

``` // test.h #define SIMPLE(T, NAME) \ T NAME; #define ADVANCED(T, PREFIX, NAME, EXTENSION) \ SIMPLE(T, PREFIX##NAME##EXTENSION) ADVANCED(int, , foo, ) ``` ``` cppcheck -E test.h Checking test.h ... [test.h:6]:...