Skip to content

Commit a098bea

Browse files
committed
[lldb] Move callback_token_t out of #ifdef windows
Also make it a int32_t to match the surrounding code.
1 parent 37813e0 commit a098bea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/include/lldb/lldb-types.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ typedef void *thread_arg_t; // Host thread argument type
6262
typedef void *thread_result_t; // Host thread result type
6363
typedef void *(*thread_func_t)(void *); // Host thread function type
6464
typedef int pipe_t; // Host pipe type
65-
typedef int callback_token_t;
6665

6766
#endif // _WIN32
6867

@@ -79,6 +78,7 @@ typedef bool (*ExpressionCancelCallback)(ExpressionEvaluationPhase phase,
7978
typedef void *ScriptObjectPtr;
8079

8180
typedef uint64_t addr_t;
81+
typedef int32_t callback_token_t;
8282
typedef uint64_t user_id_t;
8383
typedef uint64_t pid_t;
8484
typedef uint64_t tid_t;

0 commit comments

Comments
 (0)