Merge pull request #1058 from lioncash/semicolon

Remove some unnecessary semicolons
This commit is contained in:
Lioncash 2014-09-11 19:56:08 -04:00
commit 669a118063
24 changed files with 26 additions and 26 deletions

View File

@ -96,5 +96,5 @@ public:
TMemCheck *GetMemCheck(u32 address);
void Remove(u32 _Address);
void Clear() { m_MemChecks.clear(); };
void Clear() { m_MemChecks.clear(); }
};

View File

@ -104,4 +104,4 @@ void ReadReplacements(replace_v& replacements)
replacements.push_back(std::make_pair(letter, replacement));
}
};
}

View File

@ -13,4 +13,4 @@ namespace BootManager
bool BootCore(const std::string& _rFilename);
void Stop();
};
}

View File

@ -84,4 +84,4 @@ void ForceExceptionCheck(int cycles);
extern int slicelength;
}; // end of namespace
} // end of namespace

View File

@ -149,4 +149,4 @@ void SaveCodes(IniFile& inifile, const std::vector<GeckoCode>& gcodes)
inifile.SetLines("Gecko_Enabled", enabledLines);
}
};
}

View File

@ -15,4 +15,4 @@ namespace Gecko
void LoadCodes(const IniFile& globalIni, const IniFile& localIni, std::vector<GeckoCode>& gcodes);
void SaveCodes(IniFile& inifile, const std::vector<GeckoCode>& gcodes);
};
}

View File

@ -59,7 +59,7 @@ void IEXIDevice::DMARead(u32 _uAddr, u32 _uSize)
TransferByte(uByte);
Memory::Write_U8(uByte, _uAddr++);
}
};
}
// --- class CEXIDummy ---

View File

@ -43,4 +43,4 @@ void FastWrite8(const u8 _iValue);
void FastWrite16(const u16 _iValue);
void FastWrite32(const u32 _iValue);
void FastWrite64(const u64 _iValue);
};
}

View File

@ -141,4 +141,4 @@ u32 TranslateAddress(u32 _Address, XCheckTLBFlag _Flag);
void InvalidateTLBEntry(u32 _Address);
extern u32 pagetable_base;
extern u32 pagetable_hashmask;
};
}

View File

@ -37,4 +37,4 @@ void ChangeDevice(SIDevices device, int channel);
int GetTicksToNextSIPoll();
}; // end of namespace SerialInterface
} // end of namespace SerialInterface

View File

@ -37,7 +37,7 @@ int ISIDevice::RunBuffer(u8* _pBuffer, int _iLength)
DEBUG_LOG(SERIALINTERFACE, "%s", temp.c_str());
#endif
return 0;
};
}
// Stub class for saying nothing is attached, and not having to deal with null pointers :)

View File

@ -355,4 +355,4 @@ union UVIHorizontalStepping
unsigned int GetTicksPerFrame();
int GetNumFields();
};
}

View File

@ -328,4 +328,4 @@ int Wiimote::IOWrite(const unsigned char *buf, size_t len)
return 0;
}
};
}

View File

@ -181,4 +181,4 @@ void ChangeWiimoteSource(unsigned int index, int source);
bool IsValidBluetoothName(const std::string& name);
bool IsBalanceBoardName(const std::string& name);
}; // WiimoteReal
} // WiimoteReal

View File

@ -179,4 +179,4 @@ typedef void(*ManipFunction)(GCPadStatus*, int);
void SetInputManip(ManipFunction);
void CallInputManip(GCPadStatus* PadStatus, int controllerID);
};
}

View File

@ -32,7 +32,7 @@ public:
class NetPlayUI
{
public:
virtual ~NetPlayUI() {};
virtual ~NetPlayUI() {}
virtual void BootGame(const std::string& filename) = 0;
virtual void StopGame() = 0;

View File

@ -76,4 +76,4 @@ enum
namespace NetPlay
{
bool IsNetPlayRunning();
};
}

View File

@ -41,7 +41,7 @@ public:
u32 getNgId() {return Common::swap32(BootMiiKeysBin.ng_id);}
u32 getNgKeyId() {return Common::swap32(BootMiiKeysBin.ng_key_id);}
const u8* getNgPriv() {return BootMiiKeysBin.ng_priv;}
const u8* getNgSig() {return BootMiiKeysBin.ng_sig;};
const u8* getNgSig() {return BootMiiKeysBin.ng_sig;}
private:
void InitDefaults();

View File

@ -76,7 +76,7 @@ public:
bool RemoveTitle(u64 _titleID);
private:
CNANDContentManager() {};
CNANDContentManager() {}
~CNANDContentManager();
static CNANDContentManager m_Instance;

View File

@ -30,4 +30,4 @@ void CopyEFB(u32 dstAddr, const EFBRectangle& srcRect,
void ClearScreen(const EFBRectangle &rc);
void OnPixelFormatChange();
void SetInterlacingMode(const BPCmd &bp);
};
}

View File

@ -12,8 +12,8 @@ public:
virtual ~GFXDebuggerBase() {}
// if paused, debugging functions can be enabled
virtual void OnPause() {};
virtual void OnContinue() {};
virtual void OnPause() {}
virtual void OnContinue() {}
void DumpPixelShader(const std::string& path);
void DumpVertexShader(const std::string& path);

View File

@ -15,4 +15,4 @@ void Init(const std::string& gameCode);
bool HiresTexExists(const std::string& filename);
PC_TexFormat GetHiresTex(const std::string& fileName, unsigned int* pWidth, unsigned int* pHeight, unsigned int* required_size, int texformat, unsigned int data_size, u8* data);
};
}

View File

@ -24,6 +24,6 @@ namespace VertexLoaderManager
void AppendListToString(std::string *dest);
NativeVertexFormat* GetCurrentVertexFormat();
};
}
void RecomputeCachedArraybases();

View File

@ -43,8 +43,8 @@ public:
virtual ::NativeVertexFormat* CreateNativeVertexFormat() = 0;
static void DoState(PointerWrap& p);
virtual void CreateDeviceObjects(){};
virtual void DestroyDeviceObjects(){};
virtual void CreateDeviceObjects(){}
virtual void DestroyDeviceObjects(){}
protected:
virtual void vDoState(PointerWrap& p) { }