Skip to content
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

std.cfg: Added support for std::filesystem::create_* functions #7169

Merged
merged 1 commit into from
Jan 3, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions cfg/std.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6621,6 +6621,22 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
<arg nr="1" direction="in"/>
<arg nr="2" direction="out" default=""/>
</function>
<!-- https://en.cppreference.com/w/cpp/filesystem/create_symlink -->
<!-- (1) (since C++17) void create_symlink(const std::filesystem::path& target, const std::filesystem::path& link ); -->
<!-- (2) (since C++17) void create_symlink(const std::filesystem::path& target, const std::filesystem::path& link, std::error_code& ec ) noexcept; -->
<!-- (1) (since C++17) void create_directory_symlink(const std::filesystem::path& target, const std::filesystem::path& link ); -->
<!-- (2) (since C++17) void create_directory_symlink(const std::filesystem::path& target, const std::filesystem::path& link, std::error_code& ec ) noexcept; -->
<!-- https://en.cppreference.com/w/cpp/filesystem/create_hard_link -->
<!-- (1) (since C++17) void create_hard_link(const std::filesystem::path& target, const std::filesystem::path& link ); -->
<!-- (2) (since C++17) void create_hard_link(const std::filesystem::path& target, const std::filesystem::path& link, std::error_code& ec ) noexcept; -->
<function name="std::filesystem::create_symlink,std::filesystem::create_directory_symlink,std::filesystem::create_hard_link">
<returnValue type="void"/>
<noreturn>false</noreturn>
<leak-ignore/>
<arg nr="1" direction="in"/>
<arg nr="2" direction="in"/>
<arg nr="3" direction="out" default=""/>
</function>
<!-- std::string std::ostringstream::str() const; -->
<!-- std::string std::stringstream::str() const; -->
<!-- std::string std::basic_stringstream::str() const; -->
Expand Down
Loading