format codebase

This commit is contained in:
aronwk-aaron
2022-07-28 08:39:57 -05:00
parent 4f7aa11067
commit 19e77a38d8
881 changed files with 34700 additions and 38689 deletions

View File

@@ -13,7 +13,7 @@
#ifdef _WIN32
#define NOMINMAX
// windows.h has min and max macros that breaks cpplinq
#endif
#endif
#include "cpplinq.hpp"
#pragma warning (disable : 4244) //Disable double to float conversion warnings
@@ -29,13 +29,13 @@ typedef __int64_t __int64;
\brief A virtual class for CDClient Tables
*/
//! The base class for all CD tables
//! The base class for all CD tables
class CDTable {
public:
//! Returns the table's name
/*!
\return The table name
*/
virtual std::string GetName() const = 0;
//! Returns the table's name
/*!
\return The table name
*/
virtual std::string GetName() const = 0;
};