| Index: src/IceTranslator.h
|
| diff --git a/src/IceTranslator.h b/src/IceTranslator.h
|
| index a0c04098c3f3f73a403ac65b2d7bb45f099af308..362a20af71ef7c6f259721569fcc8b71967e32e9 100644
|
| --- a/src/IceTranslator.h
|
| +++ b/src/IceTranslator.h
|
| @@ -36,8 +36,6 @@ class Translator {
|
| Translator &operator=(const Translator &) = delete;
|
|
|
| public:
|
| - typedef std::vector<VariableDeclaration *> VariableDeclarationListType;
|
| -
|
| Translator(GlobalContext *Ctx, const ClFlags &Flags)
|
| : Ctx(Ctx), Flags(Flags), ErrorStatus(0) {}
|
|
|
| @@ -58,7 +56,7 @@ public:
|
|
|
| /// Lowers the given list of global addresses to target. Generates
|
| /// list of corresponding variable declarations.
|
| - void lowerGlobals(const VariableDeclarationListType &VariableDeclarations);
|
| + void lowerGlobals(const VariableDeclarationList &VariableDeclarations);
|
|
|
| /// Creates a name using the given prefix and corresponding index.
|
| std::string createUnnamedName(const IceString &Prefix, SizeT Index);
|
|
|