[Mangler] Move the SILMangler out of the AST Mangler namespace.

This commit is contained in:
Nadav Rotem
2015-12-22 16:41:30 -08:00
parent b3fe53cff9
commit a981c80571
8 changed files with 15 additions and 15 deletions

View File

@@ -24,9 +24,10 @@
namespace swift {
class AbstractClosureExpr;
using Mangler = Mangle::Mangler;
namespace Mangle {
class AbstractClosureExpr;
enum class SpecializationKind : uint8_t {
Generic,
@@ -184,7 +185,6 @@ private:
NullablePtr<SILInstruction> Inst);
};
} // end namespace Mangle
} // end namespace swift
#endif