Changeset 1177


Ignore:
Timestamp:
Mar 28, 2012, 7:21:02 PM (11 years ago)
Author:
sam
Message:

math: disable vectors of halfs until we find a way to speed up the build
time, for now the .h takes 17 seconds to compile for each file!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lol/math/vector.h

    r1176 r1177  
    12471247DECLARE_ALL_VECTOR_COERCE_OPS(double, long double)
    12481248
     1249/* FIXME: vectors of "half" are deactivated for now, because they
     1250 * induce extremely long compilation times (about 17 seconds per TU). */
     1251
     1252#if 0
    12491253/* All integer types are promoted to half; all floating point types
    12501254 * cause half to be promoted. */
     
    12611265DECLARE_ALL_VECTOR_COERCE_OPS(half, double)
    12621266DECLARE_ALL_VECTOR_COERCE_OPS(half, long double)
     1267#endif
    12631268
    12641269/* FIXME: vectors of "real" are deactivated for now, because we do
Note: See TracChangeset for help on using the changeset viewer.