commit a3f41e23ce4a0509e0b741c11a525cbe9f4985cc
parent fef5aab80857bfb1472157b07261028759571021
Author: Florian Dold <dold@taler.net>
Date: Sun, 9 Aug 2026 19:23:41 +0200
wallet: guard Apple-specific pragma marks
Diffstat:
2 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/taler_wallet_core_lib.c b/taler_wallet_core_lib.c
@@ -344,7 +344,9 @@ TALER_set_curl_http_client(struct TALER_WALLET_Instance *twi)
}
#endif
+#ifdef __APPLE__
#pragma mark -
+#endif
struct JSHttpClientImplementation *
TALER_pack_http_client_implementation(JSHttpReqCreateFn req_create,
JSHttpReqCancelFn req_cancel,
diff --git a/taler_wallet_core_lib.h b/taler_wallet_core_lib.h
@@ -172,7 +172,9 @@ TALER_set_http_client_implementation(struct TALER_WALLET_Instance *twi,
void
TALER_set_curl_http_client(struct TALER_WALLET_Instance *twi);
+#ifdef __APPLE__
#pragma mark -
+#endif
/**
* Build JSHttpClientImplementation struct for native HTTP client implementation to be used by the wallet.
*