From 1669b43d80e8c4ac0221410351b40416e0650dc6 Mon Sep 17 00:00:00 2001 From: Tim Foley Date: Mon, 10 Jul 2017 14:18:44 -0700 Subject: Fix emission of `static` for HLSL I forgot to include a trailing space. --- source/slang/emit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/slang/emit.cpp b/source/slang/emit.cpp index 2791a436e..05503265a 100644 --- a/source/slang/emit.cpp +++ b/source/slang/emit.cpp @@ -2628,7 +2628,7 @@ struct EmitVisitor switch(context->shared->target) { default: - Emit("static"); + Emit("static "); break; case CodeGenTarget::GLSL: -- cgit v1.2.3