mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-12 17:46:34 +01:00
Never write #ifdef'ed code after 4am
This commit is contained in:
parent
d4b774e935
commit
dcc14e9f6c
1 changed files with 1 additions and 1 deletions
|
|
@ -190,7 +190,7 @@ private:
|
||||||
|
|
||||||
static size_t align32 (size_t s) {
|
static size_t align32 (size_t s) {
|
||||||
#if defined(__arm__) || defined(__aarch64__)
|
#if defined(__arm__) || defined(__aarch64__)
|
||||||
return ((s - 1) | 3) + 1
|
return ((s - 1) | 3) + 1;
|
||||||
#else
|
#else
|
||||||
return s;
|
return s;
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue