]> git.lyx.org Git - features.git/commitdiff
Remove old workaround that is not needed anymore
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Sat, 3 Nov 2018 14:29:10 +0000 (14:29 +0000)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Thu, 18 Jun 2020 12:39:51 +0000 (14:39 +0200)
This causes a compilation error with boost 1.69.

Fixes bug #11349.

src/support/FileName.cpp

index 7fa063163a3bacdfd7afa53176c29ff8190f2c31..3d22acbe705e497ed38ffbdb1e26e61a94b1de34 100644 (file)
 using namespace std;
 using namespace lyx::support;
 
-// OK, this is ugly, but it is the only workaround I found to compile
-// with gcc (any version) on a system which uses a non-GNU toolchain.
-// The problem is that gcc uses a weak symbol for a particular
-// instantiation and that the system linker usually does not
-// understand those weak symbols (seen on HP-UX, tru64, AIX and
-// others). Thus we force an explicit instanciation of this particular
-// template (JMarc)
-template struct boost::detail::crc_table_t<32, 0x04C11DB7, true>;
-
 namespace lyx {
 namespace support {