mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-27 09:19:00 +02:00
remove static from pointer sized or smaller types for aesthetics, change constexpr static to static constexpr for consistency
Signed-off-by: arades79 <scravers@protonmail.com>
This commit is contained in:
parent
3e078dbb07
commit
60a68839ee
102 changed files with 300 additions and 307 deletions
|
|
@ -47,7 +47,7 @@ template <typename ContiguousContainer>
|
|||
static_assert(std::is_same_v<typename ContiguousContainer::value_type, u8>,
|
||||
"Underlying type within the contiguous container must be u8.");
|
||||
|
||||
constexpr static std::size_t pad_width = 2;
|
||||
constexpr std::size_t pad_width = 2;
|
||||
|
||||
std::string out;
|
||||
out.reserve(std::size(data) * pad_width);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue