Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
waahm7 committed Oct 18, 2024
1 parent 19085ff commit 220324f
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 9 deletions.
1 change: 0 additions & 1 deletion include/aws/common/atomics.h
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,6 @@ size_t aws_atomic_fetch_xor(volatile struct aws_atomic_var *var, size_t n);
AWS_STATIC_IMPL
void aws_atomic_thread_fence(enum aws_memory_order order);


AWS_EXTERN_C_END

#ifndef AWS_NO_STATIC_IMPL
Expand Down
1 change: 0 additions & 1 deletion include/aws/common/atomics.inl
Original file line number Diff line number Diff line change
Expand Up @@ -144,5 +144,4 @@ AWS_EXTERN_C_END

#include <aws/common/atomics_fallback.inl>


#endif /* AWS_COMMON_ATOMICS_INL */
1 change: 0 additions & 1 deletion include/aws/common/clock.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ AWS_EXTERN_C_END
# include <aws/common/clock.inl>
#endif /* AWS_NO_STATIC_IMPL */


AWS_POP_SANE_WARNING_LEVEL

#endif /* AWS_COMMON_CLOCK_H */
2 changes: 0 additions & 2 deletions include/aws/common/error.h
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,6 @@ int aws_translate_and_raise_io_error_or(int error_no, int fallback_aws_error_cod
AWS_COMMON_API
int aws_translate_and_raise_io_error(int error_no);



AWS_EXTERN_C_END
#ifndef AWS_NO_STATIC_IMPL
# include <aws/common/error.inl>
Expand Down
3 changes: 0 additions & 3 deletions include/aws/common/math.inl
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@
#include <limits.h>
#include <stdlib.h>



#if defined(AWS_HAVE_GCC_OVERFLOW_MATH_EXTENSIONS) && (defined(__clang__) || !defined(__cplusplus))
/*
* GCC and clang have these super convenient overflow checking builtins...
Expand Down Expand Up @@ -60,7 +58,6 @@ AWS_EXTERN_C_BEGIN
# endif
#endif


AWS_STATIC_IMPL uint64_t aws_sub_u64_saturating(uint64_t a, uint64_t b) {
return a <= b ? 0 : a - b;
}
Expand Down
1 change: 0 additions & 1 deletion include/aws/common/string.h
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,6 @@ AWS_EXTERN_C_END
# include <aws/common/string.inl>
#endif /* AWS_NO_STATIC_IMPL */


AWS_POP_SANE_WARNING_LEVEL

#endif /* AWS_COMMON_STRING_H */

0 comments on commit 220324f

Please sign in to comment.