Source Insight – version 4.0.0118
Source Insight
Version 4.0.0118 - August 10, 2020
Fix: In some situations, changing screen resolutions or monitors could cause docked panels to get positioned incorrectly.
Fix: The end-of-line character(s) might not be preserved if you used the Paste command and it changed the indent level.
Fix: Auto-complete was not proposing struct members if the struct was anonymous and nested inside another struct and the nested struct was used to declare a member of the outer struct. eg:
struct Outer { struct { int member_foo; } data; };
struct Outer an_outer;
an_outer.data.m <-- member_foo not proposed
Fix: Lookup References & Smart Rename: if you selected a (non-class member) function prototype and performed the operation, Source Insight would prompt you to choose either the function prototype or the function definition with the same name. Now it assumes you are referring to both. This already worked correctly for class member function prototypes vs. member functions.
Fix: C++: Using the = default or = delete keywords after a member function definition outside of the class body was not recognizing the function. Eg: ClassFoo::ClassFoo() = default;
Fix: Overview scroll control: the code popup was not working.
Fix: Other stability fixes.