summaryrefslogtreecommitdiff
path: root/source/slang/ir-ssa.h
diff options
context:
space:
mode:
authorTim Foley <tfoleyNV@users.noreply.github.com>2018-05-01 14:32:03 -0700
committerGitHub <noreply@github.com>2018-05-01 14:32:03 -0700
commit809f520da01abc18abe12c6eb6742297ca0fe303 (patch)
tree7c82f7d87476cb43c4033d21561dfdc874896229 /source/slang/ir-ssa.h
parent3ace6e7309a3b7ba7b9ca34472ca1828a39997a3 (diff)
Cleanups (#539)
* Cleanup: remove unused files from project * Cleanup: move IRModule forward declaration into correct namespace
Diffstat (limited to 'source/slang/ir-ssa.h')
-rw-r--r--source/slang/ir-ssa.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/slang/ir-ssa.h b/source/slang/ir-ssa.h
index b9a05c2ff..ad874845b 100644
--- a/source/slang/ir-ssa.h
+++ b/source/slang/ir-ssa.h
@@ -1,9 +1,9 @@
// ir-ssa.h
#pragma once
-struct IRModule;
-
namespace Slang
{
+ struct IRModule;
+
void constructSSA(IRModule* module);
}