You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if UP_EXTENSION #define RND_AVAILABLE
elseif DE_AVAILABLE #define RND_AVAILABLE
endif
if ALLOW_FULL_RANDOM_PLACEMENT
if RND_AVAILABLE /* a check for direct-placement support */
start_random
percent_chance 10 #define USE_FULL_RANDOM_PLACEMENT
end_random
endif
endif
if USE_FULL_RANDOM_PLACEMENT
direct_placement
endif
rms-check flags this as a potential compatibility issue. However, USE_FULL_RANDOM_PLACEMENT will only ever be defined if UP_EXTENSION or DE_AVAILABLE is defined, so this is actually fine. We could do dependency tracing of const definitions to account for this.
The text was updated successfully, but these errors were encountered:
Zetnus showed a script like this:
rms-check flags this as a potential compatibility issue. However,
USE_FULL_RANDOM_PLACEMENT
will only ever be defined ifUP_EXTENSION
orDE_AVAILABLE
is defined, so this is actually fine. We could do dependency tracing of const definitions to account for this.The text was updated successfully, but these errors were encountered: