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
While using methods like writeAttribute with DCollector::Dimensions objects, one should use getPointer() instead of &:
writeAttribute
DCollector::Dimensions
getPointer()
&
&sim_size -> sim_size.getPointer()
sim_size.getPointer()
DCollector::Dimensions sim_size( 1, 2, 3); domainCollector.writeAttribute( currentStep, DCollector::ColTypeDim(), dataSetName.str().c_str(), "sim_size", sim_size.getPointer() );
The text was updated successfully, but these errors were encountered:
Fixed with 5b3903b (Merge of #78). @psychocoderHPC we close that issue after your flex/lego/... particle branch was merged.
Sorry, something went wrong.
Closed with #78 and #86
Merge pull request ComputationalRadiationPhysics#63 from slizzered/ad…
e16cfd8
…ded_warning_flags Added flags for more compile warnings
f-schmitt
No branches or pull requests
While using methods like
writeAttribute
withDCollector::Dimensions
objects, one should usegetPointer()
instead of&
:&sim_size->sim_size.getPointer()
The text was updated successfully, but these errors were encountered: