Mentions légales du service

Skip to content
Snippets Groups Projects
Commit e2c8262b authored by Olivier COULAUD's avatar Olivier COULAUD
Browse files

Now works with Intel compiler

parent 7e00bf01
Branches
Tags
No related merge requests found
......@@ -38,12 +38,10 @@ public:
template<typename... Args>
void push(const FPoint<FReal>& inParticlePosition, const FParticleType type, Args ... args){
if(type == FParticleType::target) {
// targets.push(inParticlePosition, args...);
targets.push(inParticlePosition, FParticleType::target, args...);
targets.push(inParticlePosition, args...);
}
else {
sources.push(inParticlePosition, FParticleType::source, args...);
// sources.push(inParticlePosition, args...);
sources.push(inParticlePosition, args...);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment