Chad Condon
Chad Condon
> it reproduces across multiple versions of both gcc and clang. I was wrong on this one. GCC expects: ```cpp void (*member() override)(); ``` Clang expects: ```cpp void (*member())() override;...
> Could we at least try a slightly more descriptive name as FunctionPointer and move the typedef outside of the class space so that it doesn't have to be declared...
OK. I've renamed the typedef to `FunctionPointerReturnValue` and reduced the change set to the bare minimum required to satisfy `-Wsuggest-override`.
I know this is a lot at once, and I would be happy to break this up into a series of incremental MRs, but I wanted to show what I'm...
I definitely don't mind splitting this up. Are you OK with the direction generally? Are you comfortable updating the minimum required CMake version for native IAR support? Is it acceptable...
> I would prefer smaller PRs. - https://github.com/cpputest/cpputest/pull/1586 - https://github.com/cpputest/cpputest/pull/1583 - https://github.com/cpputest/cpputest/pull/1584 - https://github.com/cpputest/cpputest/pull/1585
@offa @basvodde Do you know the intention of the `C++11` option. Why does this do that [`CMAKE_CXX_STANDARD`](https://cmake.org/cmake/help/latest/variable/CMAKE_CXX_STANDARD.html) or [compile features](https://cmake.org/cmake/help/latest/manual/cmake-compile-features.7.html) don't? It seems like a lot of complexity that duplicates...
This has caused me problems, In instances where a project uses the default build config and sets optimization or debug settings (e.g. `-Og -g3`), CppUTest's hijacking of `CMAKE_BUILD_CONFIG` appends its...
1. How are you installing CppUTest? 2. Are you trying to reference `${CppUTest_INCLUDE_DIRS}` directly or using `target_link_libraries`? Only the latter is supported.
https://coveralls.io/builds/50742011