Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
jimporter committed Aug 3, 2024
1 parent bcb99bc commit 1885297
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/output/test_to_printable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,21 +44,21 @@ struct std::char_traits<my_enum> {
c1 = c2;
}

static char_type* assign(char_type* ptr, std::size_t count, char_type c) {
static char_type * assign(char_type *ptr, std::size_t count, char_type c) {
for (std::size_t i = 0; i != count; i++)
ptr[i] = c;
return ptr;
}

static char_type*
copy(char_type* dest, const char_type* src, std::size_t count) {
static char_type *
copy(char_type *dest, const char_type *src, std::size_t count) {
for (std::size_t i = 0; i != count; i++)
dest[i] = src[i];
return dest;
}

static char_type*
move(char_type* dest, const char_type* src, std::size_t count) {
static char_type *
move(char_type *dest, const char_type *src, std::size_t count) {
for (std::size_t i = 0; i != count; i++)
dest[i] = src[i];
return dest;
Expand Down

0 comments on commit 1885297

Please sign in to comment.