Merge branch 'master' into support_new_upload_endpoint

This commit is contained in:
Kun Deng
2022-01-08 23:46:43 -05:00
committed by GitHub
35 changed files with 1815 additions and 1706 deletions
+13 -15
View File
@@ -6,26 +6,24 @@
namespace Utilities
{
class Conversions
class Conversions
{
public:
Conversions();
static void toLowerChar(char &c)
{
public:
Conversions();
static void toLowerChar(char &c)
if (std::isalpha(c))
{
if (std::isalpha(c))
{
c = std::tolower(c);
}
c = std::tolower(c);
}
}
void initializeValues();
void initializeValues();
private:
};
template <typename T>
void printValue(T);
private:
};
}
#endif