python-texttable: update to 1.3.1
[void-packages.git] / srcpkgs / apl / patches / fix-build.patch
blobba4828d727eeb459825e1a70f0da656a1d904746
1 --- src/Symbol.cc.orig 2018-01-10 18:59:55.390738393 +0100
2 +++ src/Symbol.cc 2018-01-10 19:03:58.169098358 +0100
3 @@ -885,7 +885,7 @@ const bool can_set = (vs.name_class == N
4 (vs.name_class == NC_OPERATOR) ||
5 (vs.name_class == NC_UNUSED_USER_NAME);
7 - Assert(nc == NC_FUNCTION || NC_OPERATOR || NC_UNUSED_USER_NAME);
8 + Assert(nc == NC_FUNCTION || nc == NC_OPERATOR || nc == NC_UNUSED_USER_NAME);
10 if (!can_set) DEFN_ERROR;
11 vs.sym_val.function = fun;