Fixing win32 build. Silly VC.

This commit is contained in:
Ben Vanik
2014-08-22 18:44:52 -07:00
parent eebe68b77a
commit ba5b626cdf
2 changed files with 8 additions and 3 deletions

View File

@@ -528,7 +528,12 @@ template <typename SEQ, typename T>
struct SingleSequence : public Sequence<SingleSequence<SEQ, T>, T> {
typedef Sequence<SingleSequence<SEQ, T>, T> BASE;
typedef T EmitArgType;
// TODO(benvanik): find a way to do this cross-compiler.
#if XE_COMPILER_MSVC
static uint32_t head_key() { return T::key; }
#else
static constexpr uint32_t head_key() { return T::key; }
#endif // XE_COMPILER_MSVC
static void Emit(X64Emitter& e, const typename BASE::EmitArgs& _) {
SEQ::Emit(e, _.i1);
}