Skip to content

Commit

Permalink
EBP-383: Moved include of stdint.h in solClient.h so that it is only
Browse files Browse the repository at this point in the history
included when compiling for the Go API.
  • Loading branch information
TrentDaniel committed Dec 16, 2024
1 parent a68603a commit efe83cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/ccsmp/lib/include/solclient/solClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
#include <limits.h>
#include <stdio.h>
#include <wchar.h>
#include <stdint.h>
#endif

#if defined(__cplusplus)
Expand Down Expand Up @@ -570,6 +569,7 @@ typedef char ** solClient_propertyArray_pt; /**< pointer to an array of s
* APIs that operate on a Context.
*/
#if defined(SOLCLIENT_PSPLUS_GO)
#include <stdint.h>
typedef uintptr_t solClient_opaqueContext_pt; /**< An opaque pointer to a processing Context. */
typedef uintptr_t solClient_opaqueSession_pt; /**< An opaque pointer to a Session. */
typedef uintptr_t solClient_opaqueFlow_pt; /**< An opaque pointer to a Flow. */
Expand Down

0 comments on commit efe83cb

Please sign in to comment.