Skip to content

Commit 08bdafc

Browse files
committed
Fixed double include
1 parent ee42d9c commit 08bdafc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libcxx/include/debugging

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)