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 more interfaces found by daca@home #6087

Merged
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
29 changes: 29 additions & 0 deletions cfg/std.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6271,6 +6271,35 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
<not-uninit/>
</arg>
</function>
<!-- template <class T> std::numeric_limits<T>::epsilon(void); -->
<function name="std::numeric_limits::epsilon">
<use-retval/>
<noreturn>false</noreturn>
<leak-ignore/>
<pure/>
</function>
<!-- static std::chrono::steady_clock::time_point std::chrono::high_resolution_clock::now() noexcept;-->
<function name="std::chrono::high_resolution_clock::now">
<use-retval/>
<returnValue type="std::chrono::steady_clock::time_point"/>
<noreturn>false</noreturn>
<leak-ignore/>
</function>
<!-- static std::chrono::system_clock::time_point std::chrono::system_clock::now() noexcept;-->
<function name="std::chrono::system_clock::now">
<use-retval/>
<returnValue type="std::chrono::system_clock::time_point"/>
<noreturn>false</noreturn>
<leak-ignore/>
</function>
<!-- static std::time_t std::chrono::system_clock::to_time_t( const time_point& t ) noexcept;-->
<function name="std::chrono::system_clock::to_time_t">
<use-retval/>
<returnValue type="std::time_t"/>
<noreturn>false</noreturn>
<arg nr="1" direction="in"/>
<leak-ignore/>
</function>
<!-- template <class T> const T& min(const T& a, const T& b); -->
<function name="min,std::min">
<use-retval/>
Expand Down
Loading