OGL/ProgramShaderCache: Convert typedef over to a using alias

Same thing, but nicer to read from left to right.
This commit is contained in:
Lioncash 2019-07-26 18:43:41 -04:00
parent d6617d399f
commit 67bd2de73e
1 changed files with 3 additions and 3 deletions

View File

@ -105,9 +105,9 @@ public:
static void ReleasePipelineProgram(PipelineProgram* prog);
private:
typedef std::unordered_map<PipelineProgramKey, std::unique_ptr<PipelineProgram>,
PipelineProgramKeyHash>
PipelineProgramMap;
using PipelineProgramMap =
std::unordered_map<PipelineProgramKey, std::unique_ptr<PipelineProgram>,
PipelineProgramKeyHash>;
static void CreateAttributelessVAO();