dxx-rebirth/common/arch/sdl
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
..
digi_mixer_music.cpp Remove char[N] overload for PHYSFSX_getRealPath 2016-08-06 19:55:25 +00:00
event.cpp In event_process, handle the case of a window deleted in drawing loop with no previous window correctly, preventing possible crash 2016-11-13 11:47:59 +08:00
joy.cpp Replace "compiler-type_traits.h" with <type_traits> 2017-06-25 20:46:03 +00:00
key.cpp Merging in unification/master, resolving conflict in similar/main/kmatrix.cpp 2016-11-06 14:20:18 +08:00
mouse.cpp Pass the most significant window_event_result to the caller of event_process 2016-10-28 14:43:20 +08:00
rbaudio.cpp Replace SDL CD_INDRIVE with equivalent that uses C++ static_cast 2016-09-04 19:10:43 +00:00
timer.cpp Uninline namespace dcx 2015-12-13 18:00:49 +00:00
window.cpp Fix memory corruption starting multiplayer game 2016-11-19 18:09:26 +00:00