Created
January 4, 2014 00:33
-
-
Save ThePhD/8249647 to your computer and use it in GitHub Desktop.
unreachable
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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