Index: src/IceFixups.h |
diff --git a/src/IceFixups.h b/src/IceFixups.h |
index 3b79a92641196e44453c534d759d2f30166be662..43284ac9fefb8b3f81fc40c35ec0e6d7c1eb3e0f 100644 |
--- a/src/IceFixups.h |
+++ b/src/IceFixups.h |
@@ -21,7 +21,7 @@ namespace Ice { |
/// Each target and container format has a different namespace of relocations. |
/// This holds the specific target+container format's relocation number. |
-typedef uint32_t FixupKind; |
+using FixupKind = uint32_t; |
/// Assembler fixups are positions in generated code/data that hold relocation |
/// information that needs to be processed before finalizing the code/data. |
@@ -53,8 +53,8 @@ private: |
const Constant *value_ = nullptr; |
}; |
-typedef std::vector<AssemblerFixup> FixupList; |
-typedef std::vector<AssemblerFixup *> FixupRefList; |
+using FixupList = std::vector<AssemblerFixup>; |
+using FixupRefList = std::vector<AssemblerFixup *>; |
} // end of namespace Ice |