Details
-
Bug
-
Resolution: Duplicate
-
Not Evaluated
-
None
-
Qt Creator 4.5.0
-
None
-
Windows 10 (latest update as of 7/12/2017)
MSVC 2017 15.5
Description
The exporting/importing macros like the ones generated by the plugin template:
#if defined(LIB) # define SHARED Q_DECL_EXPORT #else # define SHARED Q_DECL_IMPORT #endif
confuses the Clang Static Analyzer as it does not recognize the actual value in the define. At first I suspected using VS 15.5 might be an issue however even when changing it to declspec(...) it still did not work when in another file. Also tried setting various language versions to no avail. Tried both Qbs and Qmake and both suffers from the same issue. It of course compiles fine and correct linkage is used.
When placed directly into the file where it was used it worked fine.
Another related quirk is that when first opening the file the analyzer does not detect any issues. However as soon as a change is made it starts showing the above as a problem even if the change was simply adding an empty line at the end of a file.
Attachments
Issue Links
- duplicates
-
QTCREATORBUG-19420 Code model has problems reparsing with MSVC 2017 15.5
- Closed