We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#1116 introduced bug(s) related to the guarding of singletons->strings in CUDASimulation.cu.
singletons->strings
CUDASimulation.cu
strings is only defined as a member for builds with FLAMEGPU_SEATBELTS defined to a truthy value (i.e. not defined to 0).
strings
FLAMEGPU_SEATBELTS
However, it is used in places where those guards are not present as of 7a7944d.
This needs fixing (and we should add a FLAMEGPU_SEATBELTS=OFF build to CI to prevent this from occurring in the future, #1136).
FLAMEGPU_SEATBELTS=OFF
Discovered by @daniele-baccega in #1135
The text was updated successfully, but these errors were encountered:
FLAMEGPU_SEATBELTS=OFF did not build
bea73ac
This bug was introduced by #1116 Closes #1137
c4ab1af
Robadob
Successfully merging a pull request may close this issue.
#1116 introduced bug(s) related to the guarding of
singletons->strings
inCUDASimulation.cu
.strings
is only defined as a member for builds withFLAMEGPU_SEATBELTS
defined to a truthy value (i.e. not defined to 0).However, it is used in places where those guards are not present as of 7a7944d.
This needs fixing (and we should add a
FLAMEGPU_SEATBELTS=OFF
build to CI to prevent this from occurring in the future, #1136).Discovered by @daniele-baccega in #1135
The text was updated successfully, but these errors were encountered: