forked from boostorg/system
Merge pull request #7 from Lastique/patch-1
Fix gcc warnings about unused variables
This commit is contained in:
@ -218,9 +218,9 @@ namespace boost
|
|||||||
inline const error_category & get_system_category() { return system_category(); }
|
inline const error_category & get_system_category() { return system_category(); }
|
||||||
inline const error_category & get_generic_category() { return generic_category(); }
|
inline const error_category & get_generic_category() { return generic_category(); }
|
||||||
inline const error_category & get_posix_category() { return generic_category(); }
|
inline const error_category & get_posix_category() { return generic_category(); }
|
||||||
static const error_category & posix_category = generic_category();
|
static const error_category & posix_category BOOST_ATTRIBUTE_UNUSED = generic_category();
|
||||||
static const error_category & errno_ecat = generic_category();
|
static const error_category & errno_ecat BOOST_ATTRIBUTE_UNUSED = generic_category();
|
||||||
static const error_category & native_ecat = system_category();
|
static const error_category & native_ecat BOOST_ATTRIBUTE_UNUSED = system_category();
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
// class error_condition -----------------------------------------------//
|
// class error_condition -----------------------------------------------//
|
||||||
|
Reference in New Issue
Block a user