Skip to content

Commit d59cc94

Browse files
Update namespace comments
1 parent c59a91f commit d59cc94

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

memlayout/wrapper.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ struct Wrapper<Struct, const_pointer, Layout::soa> : public Struct<const_pointer
260260
constexpr Wrapper& operator-=(ptrdiff_t i) { return *this = *this - i; }
261261
};
262262

263-
} // namespace Wrapper
263+
} // namespace memlayout
264264

265265
#define WRAPPER_APPLY_UNARY(...)\
266266
template <class Function>\

tests/include/device_ptr.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ struct device_ptr {
3232
int N;
3333
};
3434

35-
} // namespace kernel
35+
} // namespace test
3636

3737
#endif // DEVICE_PTR_H

tests/include/structs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ struct Gaussian {
3737
Container<uint16_t[3][3]> covariance;
3838
};
3939

40-
}
40+
} // namespace test
4141

4242
#endif // STRUCTS_H

tests/include/vector.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@ struct vector : public std::vector<T>, public call_counter {
5252
constexpr operator std::span<T>() { return { this->data(), this->data() + this->size() }; }
5353
};
5454

55-
} // namespace debug
55+
} // namespace test
5656

5757
#endif // VECTOR_H

0 commit comments

Comments
 (0)