-
Notifications
You must be signed in to change notification settings - Fork 170
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove MSVC legacy behaviour in ModelicaInternal_stat #4483
base: master
Are you sure you want to change the base?
Conversation
aa3e239
to
39b7538
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking good
1e00c3c
to
66cc90b
Compare
575d95a
to
b3c0dc6
Compare
be6589d
to
949dbf2
Compare
Co-authored-by: Hans Olsson <[email protected]>
WalkthroughThis pull request updates the comments and removes legacy behavior in the Changes
Sequence Diagram(s)sequenceDiagram
participant Caller
participant Internal_stat
participant _stat
Caller->>Internal_stat: Call Internal_stat()
Internal_stat->>Internal_stat: Check MSVC version
alt MSVC version is 2015 or later
Internal_stat->>_stat: Call _stat("a:\\")
else Legacy version handling (removed)
Internal_stat-->>Caller: (No legacy processing)
end
_stat-->>Internal_stat: Return status
Internal_stat-->>Caller: Return result
Assessment against linked issues
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
⏰ Context from checks skipped due to timeout of 90000ms (1)
🔇 Additional comments (3)
✨ Finishing Touches
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Closes #4473.
Summary by CodeRabbit
These internal improvements streamline behavior under current Visual Studio versions, enhancing overall consistency without affecting public functionality.