Skip to content

Commit

Permalink
std.cfg: Added support for some missing interfaces, found by daca@home
Browse files Browse the repository at this point in the history
  • Loading branch information
orbitcowboy committed Mar 5, 2024
1 parent f3cccd0 commit 5014069
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions cfg/std.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6271,6 +6271,27 @@ 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>
<!-- template <class T> const T& min(const T& a, const T& b); -->
<function name="min,std::min">
<use-retval/>
Expand Down

0 comments on commit 5014069

Please sign in to comment.