diff options
| author | Tim Foley <tfoleyNV@users.noreply.github.com> | 2017-07-10 14:20:25 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-07-10 14:20:25 -0700 |
| commit | d24eaa5f035e23a49ce71daaee951d8e24c56a99 (patch) | |
| tree | 833d2fada7f599934e91fd8d8a8aa3872d63664d | |
| parent | 3c92fedbb73f76f3418630069c880bdc8aedccb4 (diff) | |
| parent | 1669b43d80e8c4ac0221410351b40416e0650dc6 (diff) | |
Merge pull request #68 from tfoleyNV/static-bug-fix
Fix emission of `static` for HLSL
| -rw-r--r-- | source/slang/emit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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: |
