mirror of
https://github.com/zeromq/libzmq.git
synced 2025-10-30 13:47:13 +01:00
Problem: mismatching declarations and definitions break Solaris Studio build
Solution: add missing const qualifier to internal functions
This commit is contained in:
@@ -288,11 +288,11 @@ int do_getsockopt (void *const optval_,
|
||||
|
||||
int do_setsockopt_int_as_bool_strict (const void *const optval_,
|
||||
const size_t optvallen_,
|
||||
bool *out_value_);
|
||||
bool *const out_value_);
|
||||
|
||||
int do_setsockopt_int_as_bool_relaxed (const void *const optval_,
|
||||
const size_t optvallen_,
|
||||
bool *out_value_);
|
||||
bool *const out_value_);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user