https://bugs.kde.org/show_bug.cgi?id=360973
Bug ID: 360973
Summary: Cannot browse functions called inside an invalid
expression
Product: kdevelop
Version: 4.90.91
Platform: Compiled Sources
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: NOR
Component: Language Support: CPP (Clang-based)
Assignee: [email protected]
Reporter: [email protected]
The program below is ill-formed ("error: size of array has non-integer type
'typename tools::promote_args<int>::type' (aka 'double')"), but I can't even
inspect boost::math::pow() nor go to its declaration. If I recall correctly,
inspection of identifiers inside invalid expressions worked with KDevelop 4.x
own C++ parser.
=====
#include <boost/math/special_functions/pow.hpp>
int main()
{
int x[boost::math::pow<3>(2)];
return 0;
}
Reproducible: Always
--
You are receiving this mail because:
You are watching all bug changes.