Skip to content

Commit a94685d

Browse files
generatedunixname2645487282517272meta-codesync[bot]
authored andcommitted
Fix CQS signal modernize-use-using in fbcode/folly/lang
Reviewed By: dtolnay Differential Revision: D109004866 fbshipit-source-id: 649206447766b8822a37a12b9749ff671e87ed18
1 parent 63e9b60 commit a94685d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

‎folly/lang/Exception.cpp‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ unsigned int* uncaught_exceptions_ptr() noexcept {
9393
#if defined(__ia64__) && defined(__hpux__)
9494
typedef unsigned _Unwind_Ptr __attribute__((__mode__(__word__)));
9595
#else
96-
typedef unsigned _Unwind_Ptr __attribute__((__mode__(__pointer__)));
96+
using _Unwind_Ptr = unsigned long __attribute__((__mode__(__pointer__)));
9797
#endif
9898

9999
namespace __cxxabiv1 {

0 commit comments

Comments
 (0)