File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -35,14 +35,14 @@ _LIBCPP_EXPORTED_FROM_ABI void __breakpoint() noexcept;
3535
3636_LIBCPP_EXPORTED_FROM_ABI bool __is_debugger_present () noexcept ;
3737
38- _LIBCPP_AVAILABILITY_DEBUGGING _LIBCPP_HIDE_FROM_ABI void breakpoint () noexcept { __breakpoint (); }
38+ _LIBCPP_AVAILABILITY_DEBUGGING _LIBCPP_HIDE_FROM_ABI inline void breakpoint () noexcept { __breakpoint (); }
3939
40- _LIBCPP_AVAILABILITY_DEBUGGING _LIBCPP_HIDE_FROM_ABI void breakpoint_if_debugging () noexcept {
40+ _LIBCPP_AVAILABILITY_DEBUGGING _LIBCPP_HIDE_FROM_ABI inline void breakpoint_if_debugging () noexcept {
4141 if (__is_debugger_present ())
4242 __breakpoint ();
4343}
4444
45- _LIBCPP_AVAILABILITY_DEBUGGING _LIBCPP_HIDE_FROM_ABI bool is_debugger_present () noexcept {
45+ _LIBCPP_AVAILABILITY_DEBUGGING _LIBCPP_HIDE_FROM_ABI inline bool is_debugger_present () noexcept {
4646 return __is_debugger_present ();
4747}
4848
You can’t perform that action at this time.
0 commit comments