We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa6771a commit 6f125d4Copy full SHA for 6f125d4
srrealmodule/wrap_ScatteringFactorTable.cpp
@@ -249,7 +249,9 @@ class ScatteringFactorTableWrap :
249
ScatteringFactorTableWrap(const ScatteringFactorTable& src)
250
{
251
ScatteringFactorTable& thistable = *this;
252
- thistable = src;
+ // workaround for weird implicit ScatteringFactorTable::operator=
253
+ // in g++ Red Hat 4.7.2-2, which must have non-constant argument.
254
+ thistable = const_cast<ScatteringFactorTable&>(src);
255
}
256
257
// HasClassRegistry methods
0 commit comments