summaryrefslogtreecommitdiffstats
path: root/source/slang/compiler.cpp
diff options
context:
space:
mode:
authorTim Foley <tfoleyNV@users.noreply.github.com>2017-07-21 11:52:17 -0700
committerGitHub <noreply@github.com>2017-07-21 11:52:17 -0700
commit3fa85ede1a6d532b0e86c8b71d3f37d30c353aad (patch)
treedff607d1927c037f44a6a6fbbf2847f3944f5061 /source/slang/compiler.cpp
parent85f60e07507f347ef4cb613b6d87521ff10e6c81 (diff)
parent9718ab32e91ba632b03ad8d0f5e89a597b225a4c (diff)
Merge pull request #132 from tfoleyNV/line-directive-control
Add an API option to control emission of `#line` directives
Diffstat (limited to 'source/slang/compiler.cpp')
-rw-r--r--source/slang/compiler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/slang/compiler.cpp b/source/slang/compiler.cpp
index e16b9dec7..81f107bd8 100644
--- a/source/slang/compiler.cpp
+++ b/source/slang/compiler.cpp
@@ -690,7 +690,7 @@ namespace Slang
int id = counter++;
String path;
- path.append("slang-");
+ path.append("slang-dump-");
path.append(id);
path.append(ext);