Hello,
An other bug about 'Undocumented API'.
In test.h file:
/**
* @brief DOCUMENTATION CLASS
*/
template <class U>
class TestClass {
[...]
public:
/**
* @brief DOCUMENTATION FUNCTION
*/
template <class T>
void functionTest();
};
#include "test.impl.h"
In test.impl.h file:
[...]
/**
* @brief DOCUMENTATION FUNCTION
*/
template <class U>
template <class T>
void TestClass::functionTest();
I have "Undocumented API: functionTest" on TestClass::functionTest in "test.impl.h".
sonarqube : v5.6.3
sonar-cxx : v0.9.7-SNAPSHOT (git commit: 0b18596)