Details
-
Bug
-
Resolution: Fixed
-
Not Evaluated
-
Qt Creator 10.0.1
-
None
-
-
98b341b7c (11.0)
Description
If a function argument is initialized with = {} then the auto doxygen block generation via /** + ENTER does not trigger the generation of a doxygen block.
Example code:
struct test_struct { bool test_member = false; }; void test_func(const test_struct& cfg = {}); //Does not work void test_func(const test_struct& cfg); //Works and generates all the @brief and @param stuff