You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FYI, what I'm doing in @jacquev6/Sudoku (see commit referenced just above this comment) :
In that project, I git add the outputs of C++ Insights, so that git diff gives me insights on what I've changed. With that setup, I wanted to validate that a refactoring in a template did what I expected. That template is defined in a header file in my project, so I faced this issue : the template instanciation was not in the insight.
So I decided to write a very crude C preprocessor that only includes local files, and to pass its output to insights. Worked like a charm, and I was able to validate my refactoring in the next commit.
I try to make a test using two files as below
then I use c++insights in vscode, it doesn't show the template deduction. Does c++insight support it?
The text was updated successfully, but these errors were encountered: