Skip to content

Commit 252ad6e

Browse files
committed
refactor, renames.
1 parent 733052d commit 252ad6e

14 files changed

+339
-334
lines changed

CxxTestProps/inc/StringOps.h

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ std::string revStrOverloadRefAndCRef(std::string_view& pStr);
3737
std::string revStrOverloadRefAndCRef(const std::string_view& pStr);
3838

3939

40-
// 'StringM' - String-Mutable, all methods are non-const.
41-
struct StringM
40+
// 'StrMute' - String-Mutable, all methods are non-const.
41+
struct StrMute
4242
{
43-
constexpr static const char* struct_ = "StringM";
43+
constexpr static const char* struct_ = "StrMute";
4444

4545
std::string reverseString();
4646

@@ -78,10 +78,10 @@ struct StringM
7878
};
7979

8080

81-
// 'StringC' - String-Const, all methods are const.
82-
struct StringC
81+
// 'StrConst' - String-Const, all methods are const.
82+
struct StrConst
8383
{
84-
constexpr static const char* struct_ = "StringC";
84+
constexpr static const char* struct_ = "StrConst";
8585

8686
std::string reverseString() const;
8787

@@ -119,10 +119,10 @@ struct StringC
119119
};
120120

121121

122-
// 'StringS' - String-Static, all methods are static.
123-
struct StringS
122+
// 'StrStatic' - String-Static, all methods are static.
123+
struct StrStatic
124124
{
125-
constexpr static const char* struct_ = "StringS";
125+
constexpr static const char* struct_ = "StrStatic";
126126

127127
static std::string reverseString();
128128

0 commit comments

Comments
 (0)