Skip to content

Instantly share code, notes, and snippets.

@ThePhD
Created January 4, 2014 00:33
Show Gist options
  • Select an option

  • Save ThePhD/8249647 to your computer and use it in GitHub Desktop.

Select an option

Save ThePhD/8249647 to your computer and use it in GitHub Desktop.
unreachable
#pragma once
namespace Furrovine {
#ifdef _MSC_VER
#define unreachable __assume( 0 )
#elif _GCC_VER
#define unreachable __builtin_unreachable( )
#else
#error Define unreachable for this platform
#endif // VC++ || GCC
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment