Skip to content

Commit 6f125d4

Browse files
committed
Work around compile error on Fedora 17.
Possibly due to compiler bug.
1 parent fa6771a commit 6f125d4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

srrealmodule/wrap_ScatteringFactorTable.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,9 @@ class ScatteringFactorTableWrap :
249249
ScatteringFactorTableWrap(const ScatteringFactorTable& src)
250250
{
251251
ScatteringFactorTable& thistable = *this;
252-
thistable = src;
252+
// 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);
253255
}
254256

255257
// HasClassRegistry methods

0 commit comments

Comments
 (0)