From 9d3c0102fc26ce5b97e9532b7e657ad4a71043de Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 13 Jul 2014 15:28:50 -0400 Subject: [PATCH] Core: Get rid of an unnecessary struct typedef in Boot.h. --- Source/Core/Core/Boot/Boot.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/Boot/Boot.h b/Source/Core/Core/Boot/Boot.h index 866d6b817d..973e94cbcd 100644 --- a/Source/Core/Core/Boot/Boot.h +++ b/Source/Core/Core/Boot/Boot.h @@ -12,13 +12,13 @@ #include "DiscIO/Volume.h" using DiscIO::IVolume; -typedef struct CountrySetting +struct CountrySetting { const std::string area; const std::string video; const std::string game; const std::string code; -} CountrySetting; +}; class CBoot {