diff --git a/singularity-eos/eos/eos_builder.hpp b/singularity-eos/eos/eos_builder.hpp index cd9cac1691..fce5e8650b 100644 --- a/singularity-eos/eos/eos_builder.hpp +++ b/singularity-eos/eos/eos_builder.hpp @@ -45,21 +45,6 @@ constexpr bool is_modifiable(const U &u, const Variant &var) { return IsModifiable::value; } -// Modifies the eos contained in the var object with the modifier Mod, -// assuming such modification is possible, i.e., Mod is in the -// variant, for the underlying type T. If this modification is not -// possible, returns the unmodified EOS. Args are the additional -// arguments to the modifier's constructor. -// Intended usage: -// -// eos = Modify(eos, args); -// -// For example: -// -// EOS eos = IdealGas(gm1, Cv); -// if (shifted) { -// eos = Modify(eos, shift); -// } template