Skip to content

Commit

Permalink
[hive] [ring_span] Consistently use <stddef.h>, not <cstddef>
Browse files Browse the repository at this point in the history
Just for consistency. No functional change intended.
  • Loading branch information
Quuxplusone committed Oct 19, 2023
1 parent 951cbca commit bef49c3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion include/sg14/hive.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
#define SG14_HIVE_DEBUGGING 0
#endif

#include <stddef.h>
#include <algorithm>
#if __has_include(<bit>)
#include <bit>
Expand All @@ -52,7 +53,6 @@
#if __has_include(<concepts>)
#include <concepts>
#endif
#include <cstddef>
#include <cstring>
#include <functional>
#include <initializer_list>
Expand Down
6 changes: 3 additions & 3 deletions include/sg14/ring_span.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#pragma once

#include <cstddef>
#include <type_traits>
#include <iterator>
#include <stddef.h>
#include <cassert>
#include <iterator>
#include <type_traits>

namespace sg14
{
Expand Down

0 comments on commit bef49c3

Please sign in to comment.