Skip to content

Commit

Permalink
OGL/ProgramShaderCache: Convert typedef over to a using alias
Browse files Browse the repository at this point in the history
Same thing, but nicer to read from left to right.
  • Loading branch information
lioncash committed Jul 26, 2019
1 parent d6617d3 commit 67bd2de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/Core/VideoBackends/OGL/ProgramShaderCache.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ class ProgramShaderCache
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();

Expand Down

0 comments on commit 67bd2de

Please sign in to comment.