summaryrefslogtreecommitdiffstats
path: root/source/slang/emit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/emit.cpp')
-rw-r--r--source/slang/emit.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/slang/emit.cpp b/source/slang/emit.cpp
index 9411c6fdf..00bc2556b 100644
--- a/source/slang/emit.cpp
+++ b/source/slang/emit.cpp
@@ -578,8 +578,8 @@ struct EmitVisitor
if(shouldUseGLSLStyleLineDirective)
{
- auto path = sourceLocation.getPath();
-
+ auto path = sourceLocation.path;
+
// GLSL doesn't support the traditional form of a `#line` directive without
// an extension. Rather than depend on that extension we will output
// a directive in the traditional GLSL fashion.
@@ -609,7 +609,7 @@ struct EmitVisitor
// in a module that tracks source files.
emitRawText("\"");
- for(auto c : sourceLocation.getPath())
+ for(auto c : sourceLocation.path)
{
char charBuffer[] = { c, 0 };
switch(c)