dxx-rebirth/similar
Kp 9421c31b5a Replace "compiler-type_traits.h" with <type_traits>
Delete stub "compiler-type_traits.h" header.  Redirect all uses to the
standard <type_traits> header.

git grep -wlz 'compiler-type_traits.h' -- '*.cpp' '*.h' | xargs -0 perl -p -i <<EOF
    BEGIN {
	    $i = 0;
    }
    if (($i == 1 && $_ eq "\n") || ($i < 2 && /^#include "/)) {
	    # First blank line or first user-include after a system-include.
	    # Print, then never again for this file.
	    print "#include <type_traits>\n";
	    $i = 2;
    } elsif ($i == 0) {
	    $i = 1 if (/^#include </);
    } elsif ($_ eq "#include \"compiler-type_traits.h\"\n") {
	    # Remove this line if found.
	    $_ = '';
    }
    # Reset state machine when moving to next file.
    $i = 0 if eof;
EOF
2017-06-25 20:46:03 +00:00
..
2d Pass grs_bitmap to gr_pixel 2017-03-11 19:56:23 +00:00
3d Raise MAX_POINTS_PER_POLY to 64 2017-06-07 02:44:55 +00:00
arch Inline OGL_TEXTURE_LIST_SIZE 2017-03-18 18:07:37 +00:00
editor Make wclip::num_frames uint16_t 2017-06-17 23:05:16 +00:00
main Replace "compiler-type_traits.h" with <type_traits> 2017-06-25 20:46:03 +00:00
misc